- Remove Lenovo Power Management
- Device Management -> Network Interface -> Intel Wireless-N 7260 -> Switch tab to Power Management -> Uncheck Allow Computer close the device for save powe
2014年9月29日 星期一
Lenovo Z510 Wifi unstable solulation
2013年11月27日 星期三
Windows XP NTP config
On
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient
registry value:
SpecialPollInterval=3600 (1 hour)
Run
net stop "Windows Time"
net start "Windows Time"
Refer:http://dossy.org/2007/02/make-winxps-ntp-client-poll-more-frequently/
Configuration Windows Time Service on Local Time Server
Stop “Windows Time” service
Unregister server to delete all configurations
Register service to recreate registry keys
Start “Windows Time” service
Config ntp pool
Update config
Verify registry keys
Restart services
Force resync
net stop w32time
w32tm /unregister
w32tm /register
net start w32time
W32tm /config /manualpeerlist:europe.pool.ntp.org,0x1 /syncfromflags:manual
w32tm /config /update
net stop w32time && net start w32time
w32tm /resync
Refer:http://www.simple-tech.info/configure-ntp-client-and-server-windows-time-service-on-domain-controller-to-synchronize-time.aspx
Windows NTP Sync time on start
create task on task scheduler and run "net start w32time & w32tm /resync"
2012年8月24日 星期五
set java path and classpath in bat file
set path=%path%+;C:\Program Files\Java\jre7\bin
set classpath=C:\Program Files\Java\jre7\lib
save as *.bat file and run
ref:http://registerboy.pixnet.net/blog/post/24370560-windows7下關於jdk-環境變量-常見問題
2012年7月18日 星期三
Quote: Make bootable usb from bootable cd on Windows
quote from:
http://www.ehow.com/how_5942169_convert-bootable-iso-bootable-usb.html
1
Insert your USB drive into the USB slot in your computer. Open a command prompt window by going through the “Start” menu and searching for “command prompt.” Type “diskpart” into command prompt and press “Enter.” Enter in “list disk” and see what disk number your USB flash drive is. Enter in “select disk #” with # being the disk number of your USB drive. If your USB is disk 3, you would enter in “select disk 3.” Type in “clean” and your USB drive will be erased.
2
Type in “create partition primary” followed by “select partition 1.” Type in “active” and then “format fs=fat32.\" Finally enter in “assign” and type in “exit.” Your USB is now ready to have the ISO put onto it. Copy and paste your bootable ISO file into your USB flash drive. Alternatively, you can mount the ISO file as a virtual drive with Daemon Tools, which is available in the resource section of this guide. Once mounted, open a new command prompt window and enter in “xcopy d:\\*.* /s/e/f e:\\.” The drive letter “d” is the mounted ISO drive and the drive letter “e” is the USB drive. If your ISO is drive X and USB is Y, the command will be “xcopy x:\\*.* /s/e/f y:\\.”
3
Reboot your computer and enter into the BIOS settings by pressing the “F2” button when you see your computer manufacturer’s name. Go to “Boot Options,” and set your USB drive as 1st priority. Press the “F10” button to save your settings, and your computer will reboot from the USB drive.
2011年6月17日 星期五
預設用notepad開啟檔案
[HKEY_CLASSES_ROOT\.]
[HKEY_CLASSES_ROOT\.\shell]
[HKEY_CLASSES_ROOT\.\shell\open]
[HKEY_CLASSES_ROOT\.\shell\open\command]
@="Notepad.exe %1"