echo This disables UAC User Access Control Set-ItemProperty -Path REGISTRY::HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System -Name ConsentPromptBehaviorAdmin -Value 0 echo This section is to add the XPS printer to the computer for QuickBooks and other applications that need PDF functions Enable-WindowsOptionalFeature -Online -FeatureName "Printing-XPSServices-Features" -All -N echo This section is to add telnet client for troubleshooting Enable-WindowsOptionalFeature -Online -FeatureName "TelnetClient" -All -N echo This allows mapped drives and mapped printers echo New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" -Name "EnableLinkedConnections" -Value 00000001 echo This allows mapped printers to another computer New-ItemProperty -Path "HKLM:\System\CurrentControlSet\Control\Print" -Name "RpcAuthnLevelPrivacyEnabled" -Value 00000001 echo This adds firewall rules to allow in and allow out New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules" -Name "{B0F15016-321A-4F75-9E72-552D25E0ECCB}" -Value "v2.10|Action=Allow|Active=TRUE|Dir=In|Name=allow in|" New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\services\SharedAccess\Parameters\FirewallPolicy\FirewallRules" -Name "{34780298-6C31-4C37-AF8A-C97D030E2B3E}" -Value "v2.10|Action=Allow|Active=TRUE|Dir=Out|Name=allow out|" echo This enables L2TP UDP Encapsulation for VPN New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\PolicyAgent" -Name "AssumeUDPEncapsulationContextOnSendRule" -Value 00000002 -force echo This puts Wordpad on the computer REMARKED FOR CERTAIN COMPUTERS DISM /Online /Add-Capability /CapabilityName:Microsoft.Windows.WordPad~~~~0.0.1.0