PowerShell – Add DNS Suffix to Ethernet Connections

Code.ps1   # SUFFIX TO ADD $Domain = ‘YourDomainHere.com’ # ONLY RETURN ETHERNET CONNECTIONS $Nic = Get-DnsClient | Where-Object -Property InterfaceAlias -Match Ethernet # ADD SUFFIX TO EACH ETHERNET CONNECTION Foreach ($N in $Nic) { Set-DnsClient -ConnectionSpecificSuffix $Domain -InterfaceIndex $N.InterfaceIndex $Alias = $N.InterfaceAlias $Index = $N.InterfaceIndex } Maximize Window Copy Code       Notes 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 …

Adobe Flash – Disable and Remove

Disable Local Machine [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] “DefaultPluginsSetting”=dword:00000002 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome] “DefaultPluginsSetting”=dword:00000002 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Internet Explorer] “DisableFlashInIE”=dword:00000001 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Mozilla\Firefox\FlashPlugin\Allow] “1”=”none.com”   Current User [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy Objects\{6F62A819-CC05-4484-81EE-7CEF4291EFE7}Machine\Software\Policies\Microsoft\Edge] “DefaultPluginsSetting”=dword:00000002 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy Objects\{6F62A819-CC05-4484-81EE-7CEF4291EFE7}Machine\Software\Policies\Google\Chrome] “DefaultPluginsSetting”=dword:00000002 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy Objects\{6F62A819-CC05-4484-81EE-7CEF4291EFE7}Machine\Software\Policies\Microsoft\Internet Explorer] “DisableFlashInIE”=dword:00000001 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy Objects\{6F62A819-CC05-4484-81EE-7CEF4291EFE7}Machine\Software\Policies\Mozilla\Firefox\FlashPlugin\Allow] “**delvals.”=” ” “1”=”none.com”   Uninstall   Adobe provides an Uninstall Tool   Flash uninstaller from Adobe  |  End of Life Article player.exe -uninstall   Read More …

Batch – Disable & Remove WAN Miniport

Download devcon   Create batch script :: MrNetTek :: eddiejackson.net/blog :: 4/27/2020 :: free for public use :: free to claim as your own @echo off cd “%~dp0” devcon disable “ms_pppoeminiport” devcon disable “ms_pptpminiport” devcon disable “ms_agilevpnminiport” devcon disable “ms_ndiswanbh” devcon disable “ms_ndiswanip” devcon disable “ms_sstpminiport” devcon disable “ms_ndiswanipv6” devcon disable “ms_l2tpminiport” devcon remove “ms_pppoeminiport” Read More …