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…
Applies to: Outlook 2016Outlook 2013 Symptoms In Microsoft Outlook 2016 or Outlook 2013, you experience one or several of the following symptoms: You receive the following error message: The Microsoft…
Exchange 2007 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.Admin; Exchange 2010 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010; Exchange 2013 & 2016 Add-PSSnapin Microsoft.Exchange.Management.PowerShell.SnapIn;
With a single command you can retrieve WWN’s on Windows Server 2012 R2 using PowerShell. Open the PowerShell command and type: Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace “root\WMI” | ForEach-Object {(($_.NodeWWN) |…
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")…