Windows 10 God Mode
Create a new folder and give it the name: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} Now you have a complete list from the configuration panel.
Create a new folder and give it the name: GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} Now you have a complete list from the configuration panel.
I created this script because of moving the profiles to a server in the data center were also the terminal server is located. Powershell needs to be runned as Administrator…
For Windows 10 Professional it is not possible to do this with GPO. So add in the GPO this to the register. HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager SilentInstalledAppsEnabled DWORD 0 = Disable 1 =…
I Use this script in MDT to remove all Windows 10 Apps. Add more in $Appslist if you need to remove more. $AppsList = "Microsoft.3DBuilder","Microsoft.Microsoft3DViewer","Microsoft.BingWeather","Microsoft.Getstarted","Microsoft.Messaging","Microsoft.MicrosoftOfficeHub","Microsoft.MicrosoftSolitaireCollection","Microsoft.OneConnect","Microsoft.People","Microsoft.SkypeApp","microsoft.windowscommunicationsapps","Microsoft.FeedbackHub","Microsoft.WindowsMaps","Microsoft.XboxApp","Microsoft.XboxIdendityProvider","Microsoft.ZuneMusic","Microsoft.ZuneVideo","AdobeSystemsIncorporated.AdobePhotoshopExpress","Microsoft.Advertising.Xaml","Microsoft.Office.OneNote","Microsoft.WindowsFeedbackHub","Microsoft.XboxGameOverlay","Microsoft.XboxIdentityProvider","Microsoft.XboxSpeechToTextOverlay","Microsoft.Office.Sway","Microsoft.BingNews","D5EA27B7.Duolingo-LearnLanguagesforFree","46928bounde.EclipseManager" ForEach ($App in $AppsList) {…
For a different company I needed to install Notepad++ on some systems. Created AD group. Created a Share. Give rights to the AD group. In the ad Group place the…
Create powershell script $RegPath = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" Set-ItemProperty $RegPath "AutoAdminLogon" -Value "1" -type String Set-ItemProperty $RegPath "DefaultPassword" -Value "Password" -type String Place it high in the State Restore.
LTI/ZTI Scripting: Add computer to an AD Group
Create a VBS file and place it high in the task sequence. Enable Sound at the end on the installation. Place it also at the end. Set WshShell = CreateObject("WScript.Shell")…
I use this in MDT to rename local admin account. @echo off wmic useraccount where "name='Administrator'" rename Daag
https://poshgui.com