AD Change Roaming profile Path Terminal server
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…
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
https://community.spiceworks.com/how_to/24989-export-import-wireless-network-info-on-windows-machines Create a batch file and add it to the GPO. This Batch file checks if the name exist. If not, WLAN will be created. @echo off netsh wlan show…