Travel

Categories

Windows 7 autologin

Use netplwiz

The User Profile Service service failed the logon. User profile cannot be loaded.

Sign into another Windows account. Run the registry editor. Navigate to HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList. Look at the sub-keys here in the form of S-1-5-21-XXXXXXXXXX-XXXXXXXXXX-XXXXXXXXXX-XXXX. One of them is probably duplicated with the extension “.bak.” Remove (or backup) the one without the .bak, and then rename the remaining one, removing the .bak extension.

I run the […]

Create a shortcut for ‘Switch User’ under Windows 7

Rt click on desktop > New > Shortcut > Type C:\Windows\System32\tsdiscon.exe Click Next > Name it ‘Switch Users’ > Finish.

Create a bootable Windows PE 3.0 USB drive

http://4sysops.com/archives/build-a-bootable-windows-pe-3-0-usb-drive-with-rescue-tools-part-1/

Windows 7 custom default user profiles and Mandatory user profiles

Create custom default user profile : http://technet.microsoft.com/en-us/library/gg241183%28v=ws.10%29.aspx

Mandatory user profiles : http://technet.microsoft.com/en-us/library/gg241183%28v=ws.10%29.aspx

Backup user profiles : http://maketecheasier.com/3-ways-to-backup-user-profile-in-windows-7/2011/06/11

Relocate user profiles under Windows 7

Relocate User folders during Windows 7 installation

http://www.sevenforums.com/tutorials/87555-user-profile-change-default-location.html

Windows 7 client cannot update its PTR record on Windows DNS server

http://setspn.blogspot.com/2010/12/windows-7-reverse-lookup-dns.html

Windows 7 shares disappear on Winxp client

I found that my windows 7 shares was always disappear from my Winxp machine after sometimes esp after I have used remote desktop to connect to the Windows 7.

Have tried to search solution on the net and tried below. See if this can helps

use regedit to increase the size of a parameter: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanServer\Parameters

[…]

print pdf in command line under Windows

Assume you have installed Adobe Reader

Under Powershell :

Dir D:\test\S10010025.pdf | Foreach-Object { Start-Process -FilePath $_.FullName –Verb Print }

Or for batch printing

Dir D:\test\*.pdf | Foreach-Object { Start-Process -FilePath $_.FullName –Verb Print }

Or

AcroRd32.exe /s /o /h /t “FULL_PATH_TO_PDF” “PRINTER NAME” “PRINTER DRIVER NAME” “PORT”

AcroRd32.exe /s /o /h /p “FULL_PATH_TO_PDF” for […]

Windows 7 and mandatory profile

http://support.microsoft.com/kb/973289

http://theitbros.com/sysprep-a-windows-7-machine-%E2%80%93-start-to-finish

http://benosullivan.co.uk/windows/how-to-image-and-deploy-windows-7-a-complete-guide/

My unattend.xml for copying the default user profile generated using the Windows System Image Manager tool for a x64 Win7 enterprise seed

<?xml version=”1.0″ encoding=”utf-8″?> <unattend xmlns=”urn:schemas-microsoft-com:unattend”> <settings pass=”specialize”> <component name=”Microsoft-Windows-Shell-Setup” processorArchitecture=”amd64″ publicKeyToken=”31bf3856ad364e35″ language=”neutral” versionScope=”nonSxS” xmlns:wcm=”http://schemas.microsoft.com/WMIConfig/2002/State” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”> <CopyProfile>true</CopyProfile> </component> </settings> <cpi:offlineImage cpi:source=”catalog:c:/users/administrator/desktop/install_windows 7 enterprise.clg” xmlns:cpi=”urn:schemas-microsoft-com:cpi” /> </unattend>