Friday, September 16, 2011
Tuesday, September 13, 2011
SCCM training
http://www.microsoft.com/systemcenter/configurationmanager/en/us/virtual-labs.aspx
http://blogcastrepository.com/level5/sccm/rss.aspx?Tags=SCCM+Training+Videos&AndTags=1
http://www.filesonic.com/folder/309a8cfe49f0f6ea9
http://www.ahmedgroup.co.uk/articles/47/1/Step-by-step-guide-installing-SCCM-2007-Part-1/Page1.html
SharePoint logs location
SP 2007 - c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\LOGS
SP 2010 - c:\Program Files\Common Files\Microsoft Shared\web server extensions\14\LOGS
Friday, August 5, 2011
Friday, July 29, 2011
Get list of data locations for SQL databases
Select name, physical_name from sys.master_files
Thursday, May 19, 2011
Check which Update Rollup version is installed on CRM
Browse to the CRM website.
Click on the “Help” button on the top right side of the window.
Click on “About Microsoft Dynamics CRM”
Get the build number displayed
Check build number with link below
Tuesday, May 17, 2011
Thursday, May 12, 2011
Configuring SMTP mail on Server 2008
Wednesday, May 11, 2011
Tuesday, May 10, 2011
Rename a SQL server
Check the server name:
Select @@ServerName
For a server with a default instance:
sp_dropserver 'old_name'
GO
sp_addserver 'new_name', 'local'
GO
For a server with a named instance:
sp_dropserver <'old_name\instancename'>
GO
sp_addserver <'new_name\instancename'>, local
GO
Restart the SQL Server instance
Thursday, April 14, 2011
Get list of VMs on physical host
- Run the VMM powershell module
- Get-VMMServer -ComputerName VMMserver.domain.com
- Get-VM -VMHost hostservername.domain.com | Format-List -property Name > output.txt
Tuesday, April 12, 2011
Restore iPhone without passcode
- Connect to iTunes
- Hold the Power and Home buttons for 10 secs.
- Release Power but keep holding Home for another 10 secs.
- iTunes should detect the phone in recovery mode, and prompt to restore.
Tuesday, April 5, 2011
Sunday, March 6, 2011
Event ID: 4007 DNS Server error
The DNS server was unable to open zone _msdcs.nwtraders.msft in the Active Directory from the application directory partition ForestDnsZones.nwtraders.msft. This DNS server is configured to obtain and use information from the directory for this zone and is unable to load the zone without it. Check that the Active Directory is functioning properly and reload the zone. The event data is the error code.
Remove the offending zone entries from:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DNS Server\Zone
Tuesday, February 15, 2011
Get MAC address remotely
Run from a command prompt: getmac /s (hostname)
To specify which user account to run under: getmac /s (hostname) /u (username) /p (password)
Sunday, February 13, 2011
WSUS update errors
Failed to contact server with 0x8024402c or Error 0x8024402c occurred while downloading update; notifying dependent calls:
Open elevated command prompt:
sc stop bitssc stop wuauserv
rmdir /s "%windir%\SoftwareDistribution"
mkdir /s "%windir%\SoftwareDistribution"
cacls "%windir%\SoftwareDistribution" /G Everyone:F
gpupdate /target:computer
sc start bits
sc start wuauserv
wuauclt /detectnow
Tuesday, February 8, 2011
DNS refreshing on client and server
If you are having issues contacting a client from a DNS server as the IP address is outdated and you cannot wait til scavenging takes place, you will need to clear the IP address manually:
- Delete the offending DNS entry from the DNS console
- Clear cache on DNS server: dnscmd /clearcache
- Re-register client on DNS server: ipconfig /registerdns
Monday, February 7, 2011
Install Integration Components on 32-bit Server Core VM
If you are having issues installing the Integration Components package on a Server Core install of Windows Server 2008 32-bit while using Virtual PC then:
- first shutdown the VM
- open the VMC file for the VM (will be in the location that you specified when creating the virtual machine)
- open file in Notepad and disable the soundcard(sound_adapter)
- Restart the VM then install IC as normal
Friday, February 4, 2011
WDS logs on client
During install: Shift F10 to open cmd prompt > notepad > browse to x:\windows\panther > check setupact.log and setuperr.log
After install: c:\windows\panther > check setupact.log and setuperr.log
Monday, January 31, 2011
Service stuck on 'Stopping' state
If you have a service that is stuck on the 'Stopping' state and can't be restarted, stopped etc, normally restarting the machine will resolve the issue but if it's a production machine then you obviously want to avoid this.
To restart a service stuck in the 'Stopping' state, open a command prompt > taskkill /PID XXX /F (replacing XX with the PID of the offending service. Locate the PID in taskmgr > Services > PID).
Friday, January 28, 2011
Missing or corrupt hal.dll file
If you are getting a boot error relating to a 'missing or corrupt \system32\hal.dll. Please re-isntall a copy of the above file.', then follow the steps below:
1. Boot from a Windows install CD/DVD > open Recovery Console
2. Select the Windows installation > enter Admin password
3. At the C:\Windows prompt > cd system32 > map (to get the drive letter of the CD/DVD drive)
4. 'expand <>:\i386\hal.dl_'
5. 'exit'
Monday, January 24, 2011
Failed to initialise TPM error
If you get an error (0x80070005) when initialising TPM for Bitlocker and you have GP set to 'Save the recovery key to AD' then make sure the computer object has Write permissions to itself in AD.
Thursday, January 20, 2011
SMTP testing
Good Technet article if you need to test SMTP connectivity:
Wednesday, January 19, 2011
Error when opening Server Manager MMC snap-in
If you are getting {18ea3f92-d6aa-41d9-a205-2023400c8fbb} when trying to open Server Manager on Windows Server 2008. Go to C:\Windows\Microsoft.NET\Framework64\v2.0.50727\CONFIG folder > rename current machine.config file > make copy of current.machine.default file > rename it to machine.config
Tuesday, January 11, 2011
Enabling PIN at startup when Bitlocker is already enabled
If you have Bitlocker already installed on your drives but would now like to require a PIN at startup, follow these steps:
- Check Group/Local policy (Computer Configuration > Administrative Templates > Windows Components > Bitlocker Drive Encryption > Operating System Drives)
- Make sure that 'Configure TPM startup PIN' is set to 'Require Startup PIN with TPM' in 'Require additional authentication at startup'
- Suspend Bitlocker
- From CMD, run 'manage-bde -protectors -add c: -tpmandpin xxxxxx'
- Reboot and it will prompt you for the PIN you specified.
Enabling disabled Local Admin account in Windows 7
Even if Bitlocker is enabled.
Check OS version in VHD file
If you need to check the version Windows on a VHD file without turning it on, use the /Get-CurrentEdition switch of the Deployment Image Servicing and Management (DISM) tool.
Monday, January 10, 2011
Remove email forwarding on server
If you need to remove email forwarding to a mailbox manually that is already configured NOT to forward (nothing set in AD Exchange, not set in Outlook, etc), you can use MFCMAPI for this:
- Open Mailbox withMFCMapi on the Exchange server
- Configure Outlook profile of the mailbox where forwarding needs to be removed
- Double click the mailbox to open
- Expand Root Container > Top of the information store >Inbox folder
- Right-click Inbox folder > Display Rules Table
- Delete the offending rule
Friday, January 7, 2011
Exporting VMs to a network share
When trying to export VMs to a network share and you keep getting a 'General access denied (0x80070005)' error, check the following:
- Make sure the exporting host server has Full Control rights on the share, this includes Share permissions AND NTFS permissions. These need to be set explicity.
- Check the network share does not already have a folder in it with the same name as the VM to be exported.
Subscribe to:
Posts (Atom)