PowerShell – Add DNS Suffix to Ethernet Connections

    Notes Get-DnsClient Set-DnsClient Set-DnsClientGlobalSetting Get-DnsClientGlobalSetting Get-NetAdapter   Clear Suffix List Set-DnsClientGlobalSetting -SuffixSearchList @(“”)   Set Suffix Order Set-DnsClientGlobalSetting -SuffixSearchList @(“domain.com”, “child.domain.com”) or $DnsSuffixes = “domain.com”,”child.domain.com” Invoke-Wmimethod -Class win32_networkadapterconfiguration -Name setDNSSuffixSearchOrder -ArgumentList @($DnsSuffixes),$null   Set Suffix for Single Network Connection Get-NetAdapter | where {$_.name -ne “Local Area Connection”}| foreach{ Write-Host $_.name Set-DnsClient $_.name -ConnectionSpecificSuffix Read More …

Acrobat 2020 – App Attach Testing and Troubleshooting

Unregister Package (unload app) Remove-AppxPackage AdobeAcrobat2020_20.1.30002.0_x64__1nrb0vh0kd882   Register Package (load app) Add-AppxPackage -Path ‘C:\Program Files\WindowsApps\AdobeAcrobat2020_20.1.30002.0_x64__1nrb0vh0kd882\AppxManifest.xml’ -DisableDevelopmentMode -Register   Launch App start shell:AppsFolder\AdobeAcrobat2020_1nrb0vh0kd882!ACROBAT   Create Desktop Shortcut explorer.exe shell:AppsFolder\AdobeAcrobat2020_1nrb0vh0kd882!ACROBAT     Notes Element Not Found Check the Access Control Entry for each user; look for corrupted entries. Resets ACE (Remove Corrupted Entries) icacls “C:\Program Files\WindowsApps\AdobeAcrobat2020_20.1.30002.0_x64__1nrb0vh0kd882” /c Read More …