Archive

Archive for the ‘Windows XP’ Category

Download: Windows Command Reference Book (CHM)

November 2nd, 2008

The Windows command-line tools are used to perform various tasks related to Windows Vista, Windows Server 2003, and Windows Server 2008.You can use the command reference to familiarize yourself with new and enhanced command-line tools, to learn about the command shell, and to automate command-line tasks by using batch files or scripting tools.

Download & Source: Microsoft

Windows Server, Windows Vista, Windows XP

Windows Embedded Standard - Free Download Available

October 10th, 2008

Microsoft has released Windows Embedded Standard available for download for free. Microsoft is offering the gold bits of the next iteration of its Windows embedded platform via the Download Center. Windows Embedded Standard 2009 was packaged as WES2009Eval.iso, an offering aimed exclusively for test driving. The evaluation edition of Windows Embedded Standard 2009 is designed to offer a taste of what the embedded version of the Windows platform has to offer for a total of 120 days.

Windows Embedded Standard 2009 Features

Connectivity
>> Remote Desktop Protocol
Windows Embedded Standard provides the latest version of Remote Desktop Protocol (RDP 6.1) to help enable Windows Embedded Standard-based thin clients, point of service devices, and multifunction printers to connect using the latest version of Windows Server remote computing technologies. RDP helps you use the new Terminal Services (TS) features and updates introduced in Windows Vista such as Network Level Authentication, Server authentication, resource redirection, TS gateway servers, monitor spanning, and other visual improvements.
>> Security & Management
Standard includes security and management technologies to help embedded devices to easily connect to take advantage of new features in Windows Server 2008 like Network Access Protections (NAP). NAP is a policy enforcement platform built into Windows Vista and Windows Server 2008 to better protect network assets by enforcing compliance with system health requirements. Using NAP, device makers or enterprises can create custom policies to validate embedded device health before allowing access or communication with the enterprise network.
>> Wi-Fi Protected Access 2
Windows Embedded Standard provides support for Wi-Fi Protected Access 2 (WPA2), the latest wireless security solution derived from the IEEE 802.11i standards. WPA2 delivers support for the new Wi-Fi Alliance certification for wireless security, making it easier to connect to secure public spaces that are equipped with wireless Internet access—locations known as “Wi-Fi hotspots.”
 
>> Enterprise Serviceability and Manageability
Support for Windows Server Update Services, System Center Configuration Manager, and Microsoft Operations Manager helps ensure that Windows Embedded Standard supports enterprise-class manageability of both operating system and application-level updates, helping enterprises to protect, manage, and monitor devices within existing IT infrastructures.
 

Rich Interactive Media Experience 

>> Microsoft Silverlight
Microsoft Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of media experiences and rich interactive applications (RIAs) for the Web that incorporate video, animation, interactivity, and stunning user interfaces.
>> Windows Internet Explorer 7
Windows Internet Explorer 7 comes with improved navigation and search, improved printing, and access to RSS feeds. Dynamic security protection provided by a robust new architecture helps defend against malware and phishing. Windows Internet Explorer 7 also provides an improved platform for Web development and manageability through support for CSS, RSS, and enterprise deployment and management.
>> Windows Media Player 11
Windows Media Player 11 includes new media features designed to help manage libraries of digital music, photos, and videos. Windows Media Player 11 automatically converts media files—even protected audio and video files—to optimal quality for smart, connected devices.
>> Microsoft .NET Framework 3.5
Microsoft .NET Framework 3.5 is the new managed-code programming model for Windows, featuring new technologies for building applications that have a visually compelling user experience, seamless communication across technology boundaries, and support for a wide range of business processes. Some of these new technologies include: Windows Presentation Foundation (WPF) and Windows Communication Foundation (WCF).

Download: Windows Embedded

Software, Windows XP

How to Add Move To X Folder and Copy to X Folder context menu to move or copy files n folders to specified folder

September 28th, 2008

My friends, you have learnt many priceless tips, but there is something that had been bothering me that How to Add Move To X Folder and Copy to X Folder context menu to move or copy files n folders to specified folder. So here is the trick:

Add Move To X Folder

Copy the VBS Code into Notepad and Save as MoveX.vbs

Const FOF_CREATEPROGRESSDLG = &H0&
TargetFolder = “[Enter your Sepecified folder path]”
Set objShell = CreateObject(”Shell.Application”)
Set objFolder = objShell.NameSpace(TargetFolder)
objFolder.MoveHere WScript.Arguments.Item(0), FOF_CREATEPROGRESSDLG 

Replace [Enter your Sepecified folder path] with your folder
Copy MoveX.vbs to C:\Windows\System32 folder

Now copy below registry code into notepad and save with .reg extension (like MoveX.reg)

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\*\movex]
@=”Move to X Folder”

[HKEY_CLASSES_ROOT\Directory\*\movex\command]
@=”wscript C:\\Windows\\System32\\MoveX.vbs %l”

[HKEY_CLASSES_ROOT\Directory\shell\movex]
@=”Move to X Folder”

[HKEY_CLASSES_ROOT\Directory\shell\movex\command]
@=”wscript C:\\Windows\\System32\\MoveX.vbs %l” 

D’click on movex.reg to patch the reg code….n Refresh.

you’ll get Move to X Folder context menu under Files and Folders.

Add Copy To X Folder

Copy the VBS Code into Notepad and Save as CopyX.vbs

Const FOF_CREATEPROGRESSDLG = &H0&
TargetFolder = “[Enter your Sepecified folder path]”
Set objShell = CreateObject(”Shell.Application”)
Set objFolder = objShell.NameSpace(TargetFolder)
objFolder.CopyHere WScript.Arguments.Item(0), FOF_CREATEPROGRESSDLG 

Replace [Enter your Sepecified folder path] with your folder
Copy CopyX.vbs to C:\Windows\System32 folder

Now copy below registry code into notepad and save with .reg extension (like CopyX.reg)

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\*\Copyx]
@=”Copy to X Folder”

[HKEY_CLASSES_ROOT\Directory\*\Copyx\command]
@=”wscript C:\\Windows\\System32\\CopyX.vbs %l”

[HKEY_CLASSES_ROOT\Directory\shell\Copyx]
@=”Copy to X Folder”

[HKEY_CLASSES_ROOT\Directory\shell\Copyx\command]
@=”wscript C:\\Windows\\System32\\CopyX.vbs %l” 

D’click on Copyx.reg to patch the reg code….n Refresh.

you’ll get Copy to X Folder context menu under Files and Folders.

How do I ?, Windows Vista, Windows XP

How to access exFAT formatted partition or removable devices in Windows XP

September 21st, 2008

Microsoft introduced exFAT (Extended File Allocation Table, aka FAT64) is a proprietary file system suited especially for flash drives starting with Windows Vista Service Pack 1.

Some advantages of exFAT over FAT32 are:

> Scalability to large disk sizes
> Theoretical file size limit of 16 Exabytes, limit lifted from 4 Gigabytes in FAT16.
> Support for more than 1000 files in a single directory.
> Free space allocation and delete performance improved due to introduction of a free space bitmap.
> Support for access control lists.
> Support for Transaction-Safe FAT File System.
> Provision for OEM-definable parameters to customize the file system for specific device characteristics.

We can’t access exFAT formatted partition or removable devices in all Windows OSs excluding Windows Embedded CE 6.0, Windows Vista SP1 and Windows Server 2008. But don’t worry…I have found an solution for this prob. Now atleast you access exFAT formatted partition. I have tried on Windows XP SP3…and it works flawlessly. It may work on earlier version of Windows too.

How to-

1) Download exFAT File System Driver
2) Copy exfat.sys and uexfat.dll into %windir%\System32\Drivers and %windir%\System32 respectively.
3) Copy the Reg code, given below into Notepad and Save as exFAT.reg

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\exfat]
“Description”=”exFAT File System Driver”
“DisplayName”=”exFAT File System Driver”
“ErrorControl”=dword:00000001
“Group”=”Boot File System”
“Start”=dword:00000002
“Type”=dword:00000002

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\System\exfat]
“EventMessageFile”=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,\
00,6f,00,74,00,25,00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,\
5c,00,49,00,6f,00,4c,00,6f,00,67,00,4d,00,73,00,67,00,2e,00,64,00,6c,00,6c,\
00,00,00
“TypesSupported”=dword:00000007

4) Double click on Reg File (exFAT.reg) to patch it.
5) Restart your PC to take effect.

;) ENJOY ! Happy Windows Computing.

How do I ?, Windows XP

FIX: “The filename, directory name, or volume label syntax is incorrect” with INI files

September 19th, 2008

I have recieved an email from my friend that he is facing some problem with INI associatation. The problem is:

“Whenever I try to open any file with extension “.ini” (either by double clicking or open with Notepad), It prompts “The filename, directory name, or volume label syntax is incorrect”

Same file opens if I open it using wordpad. The problem is occuring with all “.ini” files. If I create a text file, type something and save it with extension .ini, I cant open it by double clicking or by right click and follow Open with >> Notepad.”

Actully It casued by a Virus/Trojon and it can be fixed manully. So I am sharing the solution to fix it.

How to-

1) Open Registry Editor (Type regedit in Start Search or Run Dialog box)
2) Navigate to: HKEY_LOCAL_MACHINE\SOFTWARE\Classes\inifile\shell\open\command
3) Now set its (Default) value to: %SystemRoot%\system32\Notepad.exe %1

If it doesn’t work…Copy the following Registry Code in notepad and save as FixINI.REG and double click to patch it.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\.ini]
@=”inifile”

[HKEY_CLASSES_ROOT\.ini\PersistentHandler]
@=”{5e941d80-bf96-11cd-b579-08002b30bfeb}”

[HKEY_CLASSES_ROOT\inifile\shell\open]

[HKEY_CLASSES_ROOT\inifile\shell\open\command]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
  00,5c,00,53,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,4e,00,4f,00,\
  54,00,45,00,50,00,41,00,44,00,2e,00,45,00,58,00,45,00,20,00,25,00,31,00,00,\
  00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\inifile\shell\open\command]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
  00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,4e,00,4f,00,\
  54,00,45,00,50,00,41,00,44,00,2e,00,45,00,58,00,45,00,20,00,25,00,31,00,00,\
  00

Windows Vista, Windows XP

How to enable or disable Autorun (Autoplay) function for specifice devices in Windows

September 4th, 2008

The main reason of Autorun is to offer an app response to hardware actions that start on a computer. Autorun (Autoplay) feature is typically called from removable media like CD/DVDs and USB drives. During AutoPlay, the Autorun.inf file from the media is parsed. This file specifies which commands the system runs. Most of CD/DVD’s Installers and other removable devices use this functionality to start setup.

So here is an article that helps you enable or disable autorun functionality for specific devices.

How to-

1.) Open Registry Editor (Type regedit in Start Search or Run Dialog Box and press ENTER)
2.) Navigate to: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\
CurrentVersion\Policies\Explorer\
 
3.) Now look for NoDriveTypeAutoRun, a DWORD registry value and set its value as you desired to control autorun (autoplay) function for specific devices.

HEX     Decimal   Action
1 1 Disables AutoPlay on drives of unknown type
4 4 Disables AutoPlay on removable drives
8 8 Disables AutoPlay on fixed drives
10 16 Disables AutoPlay on network drives
20 32 Disables AutoPlay on CD-ROM drives
40 64 Disables AutoPlay on RAM disks
80 128 Disables AutoPlay on drives of unknown type
FF 255 Disables AutoPlay on all kinds of drives

You can disable multiple devices by adding their values, like if you wanna disable CD-ROMs and Removable devices only.

Just add 4+32 = 36 (In Decimal) and 4+20=24 (In Hex) and set the resultant value.

How do I ?, Windows Server, Windows Vista, Windows XP