This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
reg load HKU\DefaultProfile C:\Users\default\ntuser.dat | |
New-Item -path "Microsoft.PowerShell.Core\Registry::HKEY_USERS\DefaultProfile\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\" | |
New-Item -path "Microsoft.PowerShell.Core\Registry::HKEY_USERS\DefaultProfile\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" | |
New-ItemProperty -path "Microsoft.PowerShell.Core\Registry::HKEY_USERS\DefaultProfile\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" -Name "{20D04FE0-3AEA-1069-A2D8-08002B30309D}" -PropertyType Dword -Value "0" -force | |
#New-ItemProperty -path "Microsoft.PowerShell.Core\Registry::HKEY_USERS\DefaultProfile\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel" -Name "{59031a47-3f72-44a7-89c5-5595fe6b30ee}" -PropertyType Dword -Value "0" -force | |
#reg unload HKU\DefaultProfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Active Directory Quick Deployment Script | |
# Adding Domain Controller | |
# | |
# One Line has to be Edited | |
# -DomainName "Enter your Domain Name" ` | |
# | |
# Note : Sitename is specified as default site name | |
# | |
Install-windowsfeature AD-domain-services -IncludeManagementTools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Windows\Sysnative\WindowsPowerShell\v1.0\powershell.exe "C:\scripts\exchangehealth.ps1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.Requires -version 2 - Runs in Exchange Management Shell | |
.SYNOPSIS | |
.\AddresslistMemberReport.ps1 - It Can Display all the Address list and its members on a List | |
Or It can Export to a CSV file | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
-Creating Custom Mailboxes for Lab Purposes | |
I created a simple Script with a Loop | |
-So You Enter a Number of mailboxes you want | |
-Also You enter how the Mailboxes name should start with |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -version 2 | |
<# | |
.SYNOPSIS | |
CreateCustomRoleGroup.ps1 - Creates Customized Role where members can access Rules Via OWA | |
.DESCRIPTION | |
Creates Management Role,Gets the Created Role into the Role Group | |
.OUTPUTS | |
Results are output to the PowerShell window. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[string]$info = "White" # Color for informational messages | |
[string]$warning = "Yellow" # Color for warning messages | |
[string]$error = "Red" # Color for error messages | |
[string]$LogFile = "C:\Temp\Log.txt" # Path of the Log File | |
function CreateFolder($MailboxName) | |
{ | |
Write-host "Creating Folder for Mailbox Name:" $MailboxName -foregroundcolor $info | |
Add-Content $LogFile ("Creating Folder for Mailbox Name:" + $MailboxName) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.Requires -version 2 - Runs in Exchange Management Shell | |
.SYNOPSIS | |
.\ModernExchangeEnvironmentReport - | |
It displays Complete Exchange Environment Information in a modern HTML. It covers only Exchange 2010 or later. | |
Sample Report can be seen at - http://www.careexchange.in/wp-content/uploads/2015/09/ModernExchangeEnvironmentReport.htm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[string]$info = "White" # Color for informational messages | |
[string]$warning = "Yellow" # Color for warning messages | |
[string]$error = "Red" # Color for error messages | |
[string]$LogFile = "C:\Temp\Log.txt" # Path of the Log File | |
function CreateFolder($MailboxName) | |
{ | |
Write-host "Creating Folder for Mailbox Name:" $MailboxName -foregroundcolor $info | |
Add-Content $LogFile ("Creating Folder for Mailbox Name:" + $MailboxName) |
NewerOlder