Change Public Folder Default Address in Microsoft 365
Enter the following command in powershell after connecting to 365.
Set-MailPublicFolder -Identity "\PublicFolderName" -EmailAddressPolicyEnabled $False
Then logon to the 365 portal and assign the default address (exchange ...
Convert Windows 10/11 from Legacy Boot to AHCI
Perform the following steps to change the boot method to AHCI.
Run Command Prompt as Admin
Invoke a Safe Mode boot with the command:
bcdedit /set {current} safeboot ...
Converting Windows Spotlight Photos to Useable Photos/Files
All Windows spotlight images, and other Windows assets are located here:
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
Simply copy all files to an alternate path and rename all files to .jpg.
...
Configuring MacOS for PAP VPN for Duo
We recently rolled out Duo for a client who required L2TP connections to their EdgeRouter to accommodate non-PC, Mac users. To enable PAP VPN on ...
Check VMware Boot Type UEFI or BIOS Legacy
You can use the following command at the ESXi cli to find out if you are booting UEFI or Legacy BIOS mode:
vsish -e get /hardware/firmwareType
...
Crowdstrike Silent Install
To silently install Crowdstrike, use the following parameters:
WindowsSensor.MaverickGyr.exe /install /quiet /norestart CID=[INSERTCIDHERE]
To install via Screenconnect, use the following copy/paste command:
#!ps#timeout=3000000#maxlength=1000000Start-Process -FilePath "WindowsSensor.MaverickGyr.exe" -ArgumentList "/install /quiet ...
Check Windows 11 Ready-ness via RMM or Powershell
Use these commands to get the current boot type (Legacy or UEFI) and if the system has a TPM present:
RMM:
powershell -c "$env:firmware_type"powershell -c "Get-Tpm"
Powershell:
$env:firmware_type"Get-Tpm ...