Office 2021 Suite App SKUs
To be used in scripting and setting up the config files: ProPlus2021Volume Standard2021Volume ProjectPro2021Volume ProjectStd2021Volume VisioPro2021Volume VisioStd2021Volume
Lab Core | The Lab of MrNetTek
A blog about IT, technical solutions, and code.
To be used in scripting and setting up the config files: ProPlus2021Volume Standard2021Volume ProjectPro2021Volume ProjectStd2021Volume VisioPro2021Volume VisioStd2021Volume
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 …
Commands Disable 24 Hour Default Setting reg add “HKLM\Software\Microsoft\Windows NT\CurrentVersion\SystemRestore” /v SystemRestorePointCreationFrequency /t REG_DWORD /d 0 /f /reg:64 Create Restore Point wmic.exe /Namespace:\\root\default Path SystemRestore Call CreateRestorePoint “EddieRestorePoint”, 100, 7 PowerShell Create Restore Point
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 …
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 …
In SCCM Software Library > Overview > Application Management > Applications > Application > Click Deployment Types > Double-click Program > Click Detection Method tab > Add Clause Config Settings Type: Application Bundle Application bundle ID: com.citrix.receiver.nomas Data Type: Version Operator: Greater than or equal to Value: 20.8.0
Use WMI in PowerShell to control log off and shutdown. Useful for when logoff.exe or shutdown.exe will not work (as in virtual sessions). 0 – Logoff 1 – Shutdown 2 – Reboot 4 – Forced logoff 5 – Forced shutdown 6 – Forced reboot 8 – Power off 12 – Forced power off Read More …
I created a log out script for AWS users. If they are idle for at least 60 minutes, a 15 minute countdown window comes up. I added this as a scheduled task to control when the form appears. What the form looks like If the user clicks the button, it closes the form, Read More …
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 …
reg add “HKEY_CURRENT_USER\Software\Policies\Microsoft\Control Panel\International” /v “PreventUserOverrides” /t reg_dword /d 0 /f /reg:64 Notes Admin prompt > ntrights +r SeSystemtimePrivilege -u “Everyone”