Before you create any Export or Import; review/modify the max values for Transport, Receive and Send PS C:\Set-TransportConfig -MaxSendSize 100MB -MaxReceiveSize 100MB PS C:\Get-ReceiveConnector | Set-ReceiveConnector -MaxMessageSize 100MB PS C:\Get-SendConnector | Set-SendConnector -MaxMessageSize 100MB To create an export request: PS C:\New-MailboxExportRequest -Mailbox UserName -FilePath “\\server\folder\username.pst” ** You need to grant read/write permission to the group ..
category : Windows
This script will delte everyting in the “Script” folder, sub-folder, and the “-recurse” option will prevent the prompting of confirmation. The “-exclude” option alllows you to exclude files and folders. Remove-Item c:\scripts\* -recurse -exclude *.wav Alternative; $Path = ‘\\servername\folder’ Get-ChildItem -Path $Path -Recurse | Remove-Item -Force -Recurse More on the Remove-Item Powershell cmdlet can be ..
Make sure to run all listed commands from the database you are fixing, not from Master. List the orphaned users in the database EXEC sp_change_users_login ‘Report’ To assign/repair with an existing login: EXEC sp_change_users_login ‘Auto_Fix’, ‘user’ To create a new login and password for this user, use this instead: EXEC sp_change_users_login ‘Auto_Fix’, ‘user’, ‘login’, ..
1- Click Start, click Run, type cmd.exe, and then press ENTER. 2- Enter this command and then press ENTER: set devmgr_show_nonpresent_devices=1 3- Open Device Manager; Start DEVMGMT.MSC Click View, and then click Show Hidden Devices. Expand the Network Adapters tree. Right-click the dimmed network adapter, and then click ..
Disk partition alignment is very important for SQL to perform as best as possible on the current hardware. Make sure that your partitions are aligned ! Thanks to the original poster for this great article, please visit his post here ! &nb..
Once you have you Microsoft SQL Server installed, you will need to open some port in the firewall if you intend to access it from another server/computer. Copy and paste the following commands to open all common ports used by SQL Server: @echo ========= SQL Server Ports =================== @echo Enabling SQLServer default instance port 1433 ..
Thanks to the original poster, please visit his post here: http://blog.cjwdev.co.uk/2010/10/31/ad-photo-edit-a-program-for-uploading-images-into-the-active-directory-thumbnailphoto-attribute-used-by-outlook-2010/ &nb..
Thanks to all the origninal poster, please visit each link: Install and configure an Enterprise Root CA http://technet.microsoft.com/en-us/library/cc731183.aspx http://www.vkernel.ro/blog/install-certification-authority-in-windows-server-2008-r2 Install and configure a Subordiante CA: http://technet.microsoft.com/en-us/library/cc772192.aspx One of the best Complete guide I have found. http://marckean.wordpress.com/2010/07/28/build-an-offline-root-ca-with-a-subordinate-ca/ &nb..
Open a commande window, and type this: DSQUERY COMPUTER “OU=YUL-User+Computers,OU=YUL,DC=NA,DC=manwin,DC=local” -o rdn -limit 1000 > c:\machines.txt This will create a text file on your C:\ drive, with a maximum of 1000 machine names it found in AD. Change the -limi parameter to whatever you ne..
Thanks to the original poster, please visit his post here: http://community.spiceworks.com/topic/396103-cryptolocker-prevention-kit-updated?pag..