Remoteapp feed url: https://[server.domain.local]/RDWeb/Feed/webfeed.aspx
Remoteapp folder: %appdata%\Microsoft\Windows\Start Menu\Programs\Work Resources (RADC)
Remoteapp feed url: https://[server.domain.local]/RDWeb/Feed/webfeed.aspx
Remoteapp folder: %appdata%\Microsoft\Windows\Start Menu\Programs\Work Resources (RADC)
1 |
openssl s_client -connect mail.example.com:25 -starttls smtp |
1 2 3 4 5 6 7 8 |
Download OpenSSL for windows here: https://slproweb.com/products/Win32OpenSSL.html copy Server certificate section from -----BEGIN CERTIFICATE----- to -----END CERTIFICATE----- and save to a .cer file, and open the file source: https://serverfault.com/questions/131627/how-to-inspect-remote-smtp-servers-tls-certificate |
Office365 outlook keep asking for password
1 2 3 4 |
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Common\Identity] "DisableADALatopWAMOverride"=dword:00000001 |
sources:https://community.spiceworks.com/topic/2025536-outlook-2016-365-keeps-asking-for-credentials?page=5 , https://support.microsoft.com/en-us/help/4025962/can-t-sign-in-after-update-to-office-2016-build-16-0-7967-on-windows-1
Danish: Denne meddelelse kunne ikke signeres eller krypteres, fordi du ikke har et certifikat, som kan bruges til at sende fra din e-mail-adresse
Error message:
(Danish Error message)
FIX:
1 2 3 4 |
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security] "SupressNameChecks"=dword:00000001 |
1 2 3 |
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Terminal Server\CentralPublishedResources\PublishedFarms\<collection>\RemoteDesktops\<collection> ShowInPortal REG_DWORD 0x00000001 (1 means SHOW the desktop connection icon, 0 will hide it) |
WS2012 VDI TIP: How to Publish a Full Desktop Alongside Published RemoteApps
1 |
openssl s_client -connect mailserver.com:25 -starttls smtp |
prerequirements: ASA software 9.8.1 (I have tested 9.8.2)
Azure configuration:
add a Virtual network gateway to you azure subnet, I use basic, then adding a connection to the gateway like this:
Configure VPN interface:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
crypto ikev2 policy 3 encryption aes-256 integrity sha group 2 prf sha lifetime seconds 10800 crypto ipsec ikev2 ipsec-proposal Proposal-Azure protocol esp encryption aes-256 protocol esp integrity sha-1 crypto ipsec profile Profile-Azure set ikev2 ipsec-proposal Proposal-Azure set pfs group2 set security-association lifetime kilobytes 102400000 set security-association lifetime seconds 10800 interface Tunnel1 nameif VPN-AZURE ip address 169.254.2.1 255.255.255.0 standby 169.254.2.2 tunnel source interface outside tunnel destination [Azure vpngateway public ip] tunnel mode ipsec ipv4 tunnel protection ipsec profile Profile-Azure tunnel-group [Azure vpngateway public ip] type ipsec-l2l tunnel-group [Azure vpngateway public ip] ipsec-attributes ikev2 remote-authentication pre-shared-key [PreesharedKey] ikev2 local-authentication pre-shared-key [PreesharedKey] |
Configure static route to azure networks:
1 |
route VPN-AZURE [local azure subnet scope] 255.255.255.0 [Azure vpngateway public ip] 1 |
Source:
https://supportforums.cisco.com/t5/vpn/route-based-vpn-vti-for-asa-finally-here/td-p/3046928
how to disable Welcome to the 2007 Microsoft Office splashscreen when opening Microsoft picture manager
it can be disabled by setting the following registrykey
1 |
HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\General\ShownOptIn"=dword:00000001 |
I have been converting the adm file to a admx file, to be able to disable the welcome splashscreen via gpo
ADMX file: Office2007DisableSplashScreen
If you are getting this error when you try to expand your storage spaces Vdisk, and you are using StorageTiers.
you can expand your volume by using powershell instead
run the following command to get the names of your StorageTiers
1 |
Get-VirtualDisk <Vdisk FriendlyName> | Get-StorageTier | Select FriendlyName |
In my case the name is VeeamVolume
and then expand the desired StorageTier
1 |
Get-StorageTier <StorageTier FriendlyName> | Resize-StorageTier -Size <Size> |
and after the resize
source: https://docs.microsoft.com/en-us/windows-server/storage/storage-spaces/resize-volumes