PowerShell

PowerShell-Import & Export Exchange 2013 PST

Please refer to the following PowerShell Script we use to Import & Export Exchange 2013 Mailbox to local PST as 1 of our Exchange 2013 Migration Approach Export Mailbox to PST New-MailboxExportRequest -Mailbox $Mailbox -FilePath "\\EX01\M$\PST\$Name.pst" Import PST to Mailbox New-MailboxImportRequest -Mailbox $Mailbox -FilePath \\EX01\M$\PST\$mailbox.pst Monitor the Export / Import Progress Get-MailboxExportRequest | Get-MailboxexportRequestStatistics Get-MailboxImportRequest …

PowerShell-Import & Export Exchange 2013 PST Read More »

Update Windows Management Framework 5.0 on Windows 2012 R2

Please refer to the following tutorial on how to Update Windows Management Framework 5.0 on Windows 2012 R2 in my lab I would like to take advantage of the following new features in WMF5 Software Discovery, Install and Inventory with PackageManagement PowerShell Module Discovery, Install and Inventory with PowerShellGet PowerShell Script Discovery, Install and Management …

Update Windows Management Framework 5.0 on Windows 2012 R2 Read More »

Chocolatey Package Manager in Windows 10

Please refer to the following simple guide on how to use Chocolatey Package Manager in Windows 10 Install Chocolatey in Windows 10 Open PowerShell / PowerShell ISE with Administor Right Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) Verify Choco version installed PS C:\Windows\system32> choco Chocolatey v0.10.11 Install Applications from https://chocolatey.org/ #Install Applications choco install …

Chocolatey Package Manager in Windows 10 Read More »

Scroll to Top