顯示具有 windows 標籤的文章。 顯示所有文章
顯示具有 windows 標籤的文章。 顯示所有文章

2014年9月14日 星期日

dos ftp

script.txt
  • open ftp.domain.com
  • username
  • password
  • cd public_html
  • dir
  • get file.txt
  • bye
or
  • open ftp.domain.com
  • username
  • password
  • cd public_html
  • dir
  • prompt off
  • mget *.*
  • bye
ftp -s:script.txt

2013年11月21日 星期四

windows-net

windows-lan windows-network

ipconfig
netstat
nslookup
tracert
ping
net sessions
net view
route print
ncpa.cpL
firewall.cpL

2013年10月9日 星期三

2013年10月1日 星期二

windows-policy register



Windows Server 2008, 7: gpupdate to update group policy


administrator template

pstools
gpupdate /target:computer
psexec \\desktop shutdown /r


To re-register Windows client/server in WSUS review the following instructions:

1. Run "gpupdate /force" command on the Windows client/server  that have a registration issue in WSUS.

2. Run "wuauclt /detectnow " command on the Windows client/server that have a registration issue in WSUS.


Tip: You can use the Event Viewer to review the re-registration 

Troubleshooting Tools

http://www.microsoft.com/technet/prodtechnol/sbs/2003/support/documentation/53979bbb-3099-44ac-98bc-097959ac8b5c.mspx?mfr=true

3. In rare cases, you may need to run: "wuauclt.exe /resetauthorization /detectnow" command


        command on the Windows client/server that have a registration issue in WSUS.


gpupdate

inf : http://technet.microsoft.com/en-us/library/bb490983.aspx

 gpupdate [/target:{computer|user}] [/force] [/wait:value] [/logoff] [/boot]

/target: { computer | user } : Processes only the Computer settings or the current User settings. By default, both the computer settings and the user settings are processed.

/force   : Ignores all processing optimizations and reapplies all settings.

/wait: value   : Number of seconds that policy processing waits to finish. The default is 600 seconds. 0 means "no wait"; -1 means "wait indefinitely."

/logoff   : Logs off after the refresh has completed. This is required for those Group Policy client-side extensions that do not process on a background refresh cycle but that do process when the user logs on, such as user Software Installation and Folder Redirection. This option has no effect if there are no extensions called that require the user to log off.

/boot   : Restarts the computer after the refresh has completed. This is required for those Group Policy client-side extensions that do not process on a background refresh cycle but that do process when the computer starts up, such as computer Software Installation. This option has no effect if there are no extensions called that require the computer to be restarted.

/? : Displays help at the command prompt.

gpupdate
gpupdate /target:computer
gpupdate /force /wait:100
gpupdate /boot 

2013年8月24日 星期六

Windows VBScript

 Windows-VBScript

inf : http://ss64.com/vb/syntax.html

VBScript Syntax

   Loop Statements  Do-Loop, FOR-Next, For Each, While 
   Operators        Math, comparison, logical
   Naming           Naming convention for VBScript
   Built-in Constants
   Variables        Define constants and variables
   IsBlank          Function to find Null/Empty values
   Math functions   Cos,Sin,Log,Fix,VariableSubtype
   WScript properties
   Error Codes      VB Script errors

VB Scripts:
   Run a script   How to run a script.
   DriveMap       Connect to a network file share
   qchange        Re-assign network printer connections
   PrintSave      Save and Restore Windows Printer Connections
   RoamingProfile Cleardown files to improve logon and logoff times
   Replace        Find and replace text
   Run with elevated permissions Run As Admin 

   SearchAD       Search AD for Users, Computers or Workgroups
   ListComputers  List all computers
   ComputerInfo   List properties of a Computer (as shown in ADUC)
   ListUsers      List all users
   UserInfo       List properties of a User (as shown in ADUC)
   UpdateUsers    Update a property in AD for a group of users 
   Uname          List a users First and Last name

   GetDate        Return the current Year/Month/Day and time
   DateTime       Get Date, Time and daylight savings
   Delolder       Delete files older than N days
   Easter         Function to calculate the date of Easter
   isMember       Function to determine workgroup membership
   Localadmins    List local administrators across a network domain
Microsoft VB Script reference MSDN
Download Windows Scripting Host version 5.7: Wsh57_WinXP or Wsh57_Win2003
Other sources of help...


An A-Z Index of Windows VBScript commands

   Abs(number)     Absolute (positive) value of number
  .AppActivate     Activate running command
   Array(el1,el2,el3)   Add values to an Array variable
   Arguments       Command line arguments
   Asc(String)     Return ASCII code for string
   AscW(String)    Return Unicode code for string
  .BrowseForFolder Prompt the user to select a folder
c
   Call subroutine (arguments) or  subroutine arguments
   CBool(expression)  Convert expression to Boolean (True/False) •
   CByte(expression)  Convert expression to Byte (0-255) •
   CCur(expression)   Convert expression to Currency (numeric) •
   CDate(expression)  Convert expression to Date •
   CDbl(expression)   Convert expression to Double (up to 1.79x10308) •
   Chr(ChrCode)       Return the string character for ChrCode (ASCII code)
   ChrB(ChrCode)      Return the string character for ChrCode (Byte code)
   ChrW(ChrCode)      Return the string character for ChrCode (Unicode/DBCS)
   CInt(expression)   Convert expression to Integer •
   CLng(expression)   Convert expression to long •
   CSng(expression)   Convert expression to single •
   CStr(expression)   Convert expression to a string •
  .CreateObject     Create an automation object / run an external command
  .CreateShortcut   Create Shortcut
   cscript          Run a VBScript .vbs file
  .CurrentDirectory Retrieve or change the current directory
d
   Date()         The current system date
   DateAdd        Add a time interval to a Date
   DateDiff       Return the time interval between two dates
   DatePart       Return part of a given date
   DateSerial     Return a Date from a numeric Year, Month and Day
   DateValue      Return a Date from a string expression 
   Day(date)      Return the day component of date (1-31)
   Dim            Declare a new variable or array variable
   Do..Loop       Repeat a block of statements
   Drives
   Drive Map     .MapNetworkDrive - .Enum - .Remove
e
  .Echo           Echo text to screen, also StdOut.Write /.Popup
   End            End a procedure or code block
   Environment Variables  - Expand - .Delete/Remove
   Escape(String) Return only ASCII characters from a Unicode string.
   Eval(expr)     Evaluate an expression
  .Exec           Run a command
   Exp(n)         Return e (base of natural logs) raised to a power n.
   Exit           Exit a block of code immediately
f
   FileSystemObject Work with Drives, Folders and Files
   Filter         Produce an array by filtering an existing array
   Fix(number)    Return the integer portion of a number
   For...Next     Repeat a block of statements a given number of times
   For Each...    Loop through the items in a collection or array
   FormatCurrency Format a number with a currency symbol
   FormatNumber   Format a number
   FormatPercent  Format a number with a % symbol
   FormatDateTime Format a Date/Time value
   Function       Define a function procedure
g
   GetLocale()    Return the Regional LocaleID
  .GetObject      Get an Automation object
h
   Hex(number)    Return the hex value of number
   Hour(time)     Return the hour component of time
i
   If..Then       Conditionally execute a block of statements
   InputBox       Prompt for user input
   InStr          Find one string within another
   InStrRev       Find one string within another, starting from the end
   Int(number)    Return the integer portion of a number
   IsArray(varname)      Is varname an array?
   IsDate(expression)    Is expression a DateTime? 
   IsEmpty(expression)   Is expression initialised?
   IsNull(expression)    Is expression NULL?
   IsNumeric(expression) Is expression a Numeric? 
   IsObject(expression)  Is expression an object?
   Join           Combine the contents of an array into a single variable. 
l
   LBound             Return the smallest subscript for an array.
   LCase(String)      Return String in lower case
   Left(String,len)   Return the leftmost len characters of string
   LeftB(String,len)  Return the leftmost len bytes of string
   Len(String)    Return length of string in characters
   LenB(String)   Return length of string in Bytes
   Log(number)    Return natural log of number
  .LogEvent       Log an item in the Event log
   LTrim(String)  Remove any leading spaces from a string expression    
m
  .MapNetworkDrive Drive Map     
   Mid            Return a mid-section from a string
   Minute(time)   Return the minute component of time
   Month(date)    Return the month component of date
   MonthName      Convert a month number to a descriptive Month
   MsgBox         Display a dialogue box message
   Now            Return the current Date and Time
o
   On Error       Error handling
   Option Explicit   Force all variables to be defined
p
  .AddPrinterConn / .AddWindowsPrConn Add Printer connection
  .EnumPrinterConnections   List Printer connections
  .SetDefaultPrinter        Set default printer
  .RemovePrinterConnection  Remove printer connection
   Private VarName          Declare a local variable/array variable
   Public VarName           Declare a public variable/array variable
q
  .Quit            Quit
r
   Randomize(number)   Initialise the random number generator
  .ReadLine       Accept user text input
   ReDim          Resize a dynamic array
   RegExp         Regular expression search object
  .RegDelete      Registry, delete
  .RegRead        Registry, read
  .RegWrite       Registry, write
   REM            Add a Comment
   Replace        Find and replace text
   RGB(Red,Green,Blue) Return a system color code
   Right(String,len)   Return the rightmost len characters of string
   RightB(String,len)  Return the rightmost len bytes of string
   Rnd            Return a random number  
   Round          Round a number to n decimal places
   RTrim(String)  Remove any trailing spaces from a string expression
  .Run a command
s
   Second(time)   Return the second component of time
   Select...Case  Conditionally execute a block of statements
  .SendKeys
   Set variable = object   Assign an object reference
   SetLocale(LocaleID)     Set the Regional LocaleID
   Sgn(number)             The sign of a number
  .ShellExecute   Run a script/application in the Windows Shell 
   Shortcut create .CreateShortcut
  .Sleep
   Space          Return a string consisting of spaces. 
  .SpecialFolders Path to Desktop,Start menu, Programs...
   Split          Parse a string of delimited values into an array
   Sqr(number)    Square root
   StrComp        Compare two strings
   String         Create a string with a single character repeated
   StrReverse     Reverse a string
   Sub            Declare a sub procedure
t
   Time()         The current system time
   Timer()        The number of seconds since midnight
   TimeSerial     Construct a Time value from Hours, Minutes and seconds
   TimeValue      Convert a string to a Time value
   Trim(String)   Remove leading and trailing spaces from string
   TypeName       Return variable type (variant subtype). 
u
   UBound         Return the largest subscript for an array dimension
   UCase(String)  Uppercase String
   UnEscape(Str)  Return Unicode characters from an escaped ASCII string
w
   Weekday        Return the day of the week (1-7)
   WeekdayName    Return the named day of the week
   While...Wend   Conditionally repeat a block of statements
   With           Assign multiple properties of an object
   Year(date)     Return the year component of date (1-12)
   ' Remark       Add a Comment
• All VBScript variables are variants the conversion functions set the variant subtype (an internal flag indicating the DataType) .

Syntax and Examples
Microsoft VB Script reference MSDN
Windows Scripting Host version 5.7 (Windows XP)
Other sources of help...

windows-terminal-server

win7-windows-terminal-server
control panel - system and Securty (left) - system (right) -
Advanced System settings (left)  - Remote :
Allow Remote Assistance connections to this computer


= command :
%windir%\system32\SystemPropertiesPerformance.exe

inf : http://www.wikihow.com/Install-Terminal-Services


windows-command

inf http://ss64.com/nt/

http://technet.microsoft.com/en-us/library/bb490983.aspx

An A-Z Index of the Windows CMD command line

   ADDUSERS Add or list users to/from a CSV file
   ADmodcmd Active Directory Bulk Modify
   ARP      Address Resolution Protocol
   ASSOC    Change file extension associations•
   ASSOCIAT One step file association
   AT       Schedule a command to run at a specific time
   ATTRIB   Change file attributes
b
   BCDBOOT  Create or repair a system partition
   BCDEDIT  Manage Boot Configuration Data
   BITSADMIN Background Intelligent Transfer Service
   BOOTCFG  Edit Windows boot settings
   BROWSTAT Get domain, browser and PDC info
c
   CACLS    Change file permissions
   CALL     Call one batch program from another•
   CERTREQ  Request certificate from a certification authority
   CERTUTIL Utility for certification authority (CA) files and services
   CD       Change Directory - move to a specific Folder•
   CHANGE   Change Terminal Server Session properties
   CHKDSK   Check Disk - check and repair disk problems
   CHKNTFS  Check the NTFS file system
   CHOICE   Accept keyboard input to a batch file
   CIPHER   Encrypt or Decrypt files/folders
   CleanMgr Automated cleanup of Temp files, recycle bin
   CLEARMEM Clear memory leaks
   CLIP     Copy STDIN to the Windows clipboard
   CLS      Clear the screen•
   CLUSTER  Windows Clustering
   CMD      Start a new CMD shell
   CMDKEY   Manage stored usernames/passwords
   COLOR    Change colors of the CMD window•
   COMP     Compare the contents of two files or sets of files
   COMPACT  Compress files or folders on an NTFS partition
   COMPRESS Compress individual files on an NTFS partition
   CON2PRT  Connect or disconnect a Printer
   CONVERT  Convert a FAT drive to NTFS
   COPY     Copy one or more files to another location•
   CSCcmd   Client-side caching (Offline Files)
   CSVDE    Import or Export Active Directory data 
d
   DATE     Display or set the date•
   DEFRAG   Defragment hard drive
   DEL      Delete one or more files•
   DELPROF  Delete user profiles
   DELTREE  Delete a folder and all subfolders
   DevCon   Device Manager Command Line Utility 
   DIR      Display a list of files and folders•
   DIRUSE   Display disk usage
   DISKPART Disk Administration
   DISKSHADOW Volume Shadow Copy Service
   DNSSTAT  DNS Statistics
   DOSKEY   Edit command line, recall commands, and create macros
   DriverQuery Display installed device drivers
   DSACLs   Active Directory ACLs
   DSAdd    Add items to active directory (user group computer) 
   DSGet    View items in active directory (user group computer)
   DSQuery  Search for items in active directory (user group computer)
   DSMod    Modify items in active directory (user group computer)
   DSMove   Move an Active directory Object
   DSRM     Remove items from Active Directory
e
   ECHO     Display message on screen•
   ENDLOCAL End localisation of environment changes in a batch file•
   ERASE    Delete one or more files•
   EVENTCREATE Add a message to the Windows event log
   EXIT     Quit the current script/routine and set an errorlevel•
   EXPAND   Uncompress files
   EXTRACT  Uncompress CAB files
f
   FC       Compare two files
   FIND     Search for a text string in a file
   FINDSTR  Search for strings in files
   FOR /F   Loop command: against a set of files•
   FOR /F   Loop command: against the results of another command•
   FOR      Loop command: all options Files, Directory, List•
   FORFILES Batch process multiple files
   FORMAT   Format a disk
   FREEDISK Check free disk space (in bytes)
   FSUTIL   File and Volume utilities
   FTP      File Transfer Protocol
   FTYPE    File extension file type associations•
g
   GETMAC   Display the Media Access Control (MAC) address
   GLOBAL   Display membership of global groups
   GOTO     Direct a batch program to jump to a labelled line•
   GPRESULT Display Resultant Set of Policy information
   GPUPDATE Update Group Policy settings
h
   HELP     Online Help
i
   iCACLS   Change file and folder permissions
   IF       Conditionally perform a command•
   IFMEMBER Is the current user a member of a Workgroup
   IPCONFIG Configure IP
k
   KILL     Remove a program from memory
l
   LABEL    Edit a disk label
   LOCAL    Display membership of local groups
   LOGEVENT Write text to the event viewer
   LOGMAN   Manage Performance Monitor
   LOGOFF   Log a user off
   LOGTIME  Log the date and time in a file
m
   MAPISEND Send email from the command line
   MBSAcli  Baseline Security Analyzer
   MEM      Display memory usage
   MD       Create new folders•
   MKLINK   Create a symbolic link (linkd) •
   MODE     Configure a system device
   MORE     Display output, one screen at a time
   MOUNTVOL Manage a volume mount point
   MOVE     Move files from one folder to another•
   MOVEUSER Move a user from one domain to another
   MSG      Send a message
   MSIEXEC  Microsoft Windows Installer
   MSINFO32 System Information
   MSTSC    Terminal Server Connection (Remote Desktop Protocol)
   MV       Copy in-use files
n
   NET      Manage network resources
   NETDOM   Domain Manager
   NETSH    Configure Network Interfaces, Windows Firewall & Remote access
   NETSVC   Command-line Service Controller
   NBTSTAT  Display networking statistics (NetBIOS over TCP/IP)
   NETSTAT  Display networking statistics (TCP/IP)
   NOW      Display the current Date and Time 
   NSLOOKUP Name server lookup
   NTBACKUP Backup folders to tape
   NTRIGHTS Edit user account rights
o
   OPENFILES Query or display open files
p
   PATH     Display or set a search path for executable files•
   PATHPING Trace route plus network latency and packet loss
   PAUSE    Suspend processing of a batch file and display a message•
   PERMS    Show permissions for a user
   PERFMON  Performance Monitor
   PING     Test a network connection
   POPD     Return to a previous directory saved by PUSHD•
   PORTQRY  Display the status of ports and services
   POWERCFG Configure power settings
   PRINT    Print a text file
   PRINTBRM Print queue Backup/Recovery
   PRNCNFG  Display, configure or rename a printer
   PRNMNGR  Add, delete, list printers set the default printer
   PROMPT   Change the command prompt•
   PsExec     Execute process remotely
   PsFile     Show files opened remotely
   PsGetSid   Display the SID of a computer or a user
   PsInfo     List information about a system
   PsKill     Kill processes by name or process ID
   PsList     List detailed information about processes
   PsLoggedOn Who's logged on (locally or via resource sharing)
   PsLogList  Event log records
   PsPasswd   Change account password
   PsPing     Measure network performance
   PsService  View and control services
   PsShutdown Shutdown or reboot a computer
   PsSuspend  Suspend processes
   PUSHD    Save and then change the current directory•
q
   QGREP    Search file(s) for lines that match a given pattern
   Query Process    Display processes (TS/Remote Desktop)
   Query Session    Display all sessions (TS/Remote Desktop)
   Query TermServer List all servers (TS/Remote Desktop)
   Query User       Display user sessions (TS/Remote Desktop)
r
   RASDIAL  Manage RAS connections
   RASPHONE Manage RAS connections
   RECOVER  Recover a damaged file from a defective disk
   REG      Registry: Read, Set, Export, Delete keys and values
   REGEDIT  Import or export registry settings
   REGSVR32 Register or unregister a DLL
   REGINI   Change Registry Permissions
   REM      Record comments (remarks) in a batch file•
   REN      Rename a file or files•
   REPLACE  Replace or update one file with another
   Reset Session  Delete a Remote Desktop Session
   RD       Delete folder(s)•
   RMTSHARE Share a folder or a printer
   ROBOCOPY Robust File and Folder Copy
   ROUTE    Manipulate network routing tables
   RUN      Start | RUN commands
   RUNAS    Execute a program under a different user account
   RUNDLL32 Run a DLL command (add/remove print connections)

s
   SC       Service Control
   SCHTASKS Schedule a command to run at a specific time
   SCLIST   Display Services
   SET      Display, set, or remove session environment variables•
   SETLOCAL Control the visibility of environment variables•
   SETX     Set environment variables
   SFC      System File Checker 
   SHARE    List or edit a file share or print share
   ShellRunAs Run a command under a different user account
   SHIFT    Shift the position of batch file parameters•
   SHORTCUT Create a windows shortcut (.LNK file)
   SHOWGRPS List the Workgroups a user has joined
   SHOWMBRS List the Users who are members of a Workgroup
   SHUTDOWN Shutdown the computer
   SLEEP    Wait for x seconds
   SLMGR    Software Licensing Management (Vista/2008)
   SOON     Schedule a command to run in the near future
   SORT     Sort input
   START    Start a program, command or batch file•
   SU       Switch User
   SUBINACL Edit file and folder Permissions, Ownership and Domain
   SUBST    Associate a path with a drive letter
   SYSTEMINFO List system configuration
t
   TAKEOWN  Take ownership of a file
   TASKLIST List running applications and services
   TASKKILL Remove a running process from memory
   TIME     Display or set the system time•
   TIMEOUT  Delay processing of a batch file
   TITLE    Set the window title for a CMD.EXE session•
   TLIST    Task list with full path
   TOUCH    Change file timestamps    
   TRACERT  Trace route to a remote host
   TREE     Graphical display of folder structure
   TSSHUTDN Remotely shut down or reboot a terminal server
   TYPE     Display the contents of a text file•
   TypePerf Write performance data to a log file
u
   USRSTAT  List domain usernames and last login
v
   VER      Display version information•
   VERIFY   Verify that files have been saved•
   VOL      Display a disk label•
w
   WAITFOR  Wait for or send a signal
   WHERE    Locate and display files in a directory tree
   WHOAMI   Output the current UserName and domain
   WINDIFF  Compare the contents of two files or sets of files
   WINMSDP  Windows system report
   WINRM    Windows Remote Management
   WINRS    Windows Remote Shell
   WMIC     WMI Commands
   WUAUCLT  Windows Update
x
   XCACLS   Change file and folder permissions
   XCOPY    Copy files and folders
   ::       Comment / Remark•



Commands marked • are Internal commands only available within the CMD shell. All other commands (not marked with •) are external commands. External commands may be used under the CMD shell, PowerShell, or directly from START-RUN.

2013年8月20日 星期二

windows-ftp-driver

windows-driver (mount an FTP to a drive letter in windows)

On Vista (or Windows 7):

1.Click on the Start menu and choose Computer
2.Click on Map network drive towards the top of the Computer
3.Click Connect to a Web site that you can use to store your  documents and pictures.
4.This will take you to the Add Network Location Wizard. Click  the Next button.
5.Pick Choose a custom network location and click Next
6.Enter the path to your server (note the examples of how the paths should be entered) and click Next.
7.Uncheck Log on Anonymously and enter your user name for the  site, then click Next.
8.Type in the name you’d like to give this site (this is the name   that you will see in your Computer window) and click Next.
9.The wizard’s work is done. Click Finish and a window will open  showing the site. You will be prompted for a password unless you’ve  previously used Explorer to ftp to the site and the password was cached.
10.You can now work with your files just like you would in the    Explorer.
11.You’ll see a link to the site in your Computer window. Now you’ve   got easy access to your files on the remote server!
12. From explorer console,drag this to make a short cut.

2013年7月20日 星期六

Windows Boot Sequence

Windows XP Boot Sequence


  1. When power on computer.
  2. Then POST, this stands for Power On Self Test, for the computer. This process tests memory as well as a number of other subsystems. You can usually monitor this as it runs each test. After that is complete the system will run POST for any device that has a BIOS (Basic Input-Output System). An AGP has its own BIOS, as do some network cards and various other devices.
  3. Once the POST is complete and the BIOS is sure that everything is working properly, the BIOS will then attempt to read the MBR (Master Boot Record). This is the first sector of the first hard drive (called the Master or HD0). When the MBR takes over it means that Windows is now in control.
  4. The MBR looks at the BOOT SECTOR (the first sector of the active partition). That is where NTLDR is located, NTLDR is the BOOT LOADER for Windows XP. NTLDR will allow memory addressing, initiate the file system, read the boot.ini and load the boot menu. NTLDR has to be in the root of the active partition as do NTDETECT.COM, BOOT.INI, BOOTSECT.DOS (for multi-OS booting) and NTBOOTDD.SYS (if you have SCSI adapters)
  5. Once XP is selected from the Boot Menu, NTLDR will run NTDETECT.COM, BOOT.INI and BOOTSECT.DOS to get the proper OS selected and loaded. The system starts in 16-bit real mode and then moves into 32-bit protected mode.
  6. NTLDR will then load NTOSKRNL.EXE and HAL.DLL. Effectively, these two files are windows XP. They must be located in %SystemRoot%System32.
  7. NTLDR reads the registry, chooses a hardware profile and authorizes device drivers, in that exact order.
  8. At this point NTOSKRNL.EXE takes over. It starts WINLOGON.EXE that in turn starts LSASS.EXE, this is the program that display the Logon screen so that you can logon.

2013年7月12日 星期五

Could not start the DHCP Client service on Local Computer.Error 5: Access is denied. (windows)

In most cases, this error can easily be solved by granting extra permissions in the registry.
To make the permission changes in the registry, do the following:

Click Start, click Run, type regedit and click OK
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dhcp
Right click the key DHCP and click Permissions. Click Add, type network service and click OK
Select NETWORKSERVICE and check the Full control box to grant NETWORKSERVICE full control on the DHCP key.
Click OK to apply the changes and to close the window
Do the same for the key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TcpIp:

Click Start, click Run, type regedit and click OK
Navigate to the following key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TcpIp
Right click the key TcpIp and click Permissions. Click Add, type network service and click OK
Select NETWORKSERVICE and check the Full control box to grant NETWORKSERVICE full control on the TcpIp key.
Click OK to apply the changes and to close the window
To start the service, click Start, click Run, type services.msc and click OK
Right click DHCP client and click Start

Alternatively, you could click Start, click Run, type net start dhcp and click OK
The DHCP client service should now start




inf : http://www.itexperience.net/2009/10/29/error-5-access-is-denied-when-you-try-to-start-the-dhcp-client-service/

2013年7月11日 星期四

2013年7月7日 星期日

windows service

windows service tunning tune performance speed


Refer pc3 no630 6 windows service (services) can stop
  1. blue tooth
  2. windows fax
  3. remote registry  ## for stop remote edit the registry
  4. bitlocker drive encryption service  ## it is not usefull and block when reinstall windows,
  5. Perental controls. (Family safety)       


加速windowsXP的启动速度,减少占用资源,用其他软件优化的同时,
也可以通过msconfig来进一步优化!

alerter -错误警报器——
 

application layer gateway service -给与第三者网络共享/防火墙支持的服务,有些防火墙/网络共享软件需要。占用1.5mb内存。

application management-用于设定,发布和删除软件服务。

automatic updates -windows自动更新——


background intelligent transfer service -这个服务原是用来实现http1.1服务器之间的信息传输,微软称支持windows更新时断点续传 ,普通用户——

clipbook - 用与局域网电脑来共享粘贴/剪贴的内容——


com+Event system -一些 COM+ 软件需要,检查你的 c:program filesComPlus Applications 目录,没用可以把这个服务
关闭

COM+Event system application -同上

COmputer browser - 用来浏览局域网电脑的服务,但关了也不影响浏览——关!

cryptographic services -windows更新时用来确认windows 文件指纹的,更新时开启即可。

DHCP client-静态IP者需要(xDSL 等)小猫就不用了!!


Diagnostic Policy Service

  診斷策略服務啓用了 Windows 元件的問題檢測、故障排除和解決方案。如果該服務被停止,診斷將不會繼續正常運行。如果禁用該服務,則所有顯式依賴於該服務的服務將不會啓動


Distributed link tracking client-用于局域网更新连接信息,比如在电脑A有个文件,在B做了个连接,如果文件移动了,这个服务将会更新信息。占用4兆内存。

Distributed Transaction coordinator-无聊——关!

DNS Client-DNS解析服务——关!

Error reporting service -错误报告器,把windows中错误报告给微软——关!

*Event Log- 系统日志纪录服务,很有用于查找系统毛病.

Fast user switching compatibility-多用户快速切换服务——关!

help and support -帮助——关!

Human interface device access-支持“弱智”电脑配件的,比如键盘上调音量的按钮等——关!

IMAPI CD-burning COM service -xp刻牒服务,用软件就不用了占用1.6兆内存

Indexing service -恐怖的xp减速的东西——关!

Internet Connection Firewall(ICF).........-xp防火墙不用就关。

IPSEC Services-大众用户连边都沾不上。

Logical Disk manager -磁盘管理服务,需要时它会通知你,所以一般关。

Logical Disk manager administrative service-同上。

messenger -不是msn,——关!

MS software shadow copy provider-无用,据说是备份用的——关!

Net Logon-登陆 Domain Controller 用的,大众用户快关!

Netmeeting remote desktop sharing-用netmeeting 实现电脑共享——关!

Network Connections -上网/局域网要用的东东!

Network DDE -和clipbook一起用的,——关!

Network DDE DSDM -同上

Network Location Awareness-如有网络共享或ICS/ICF可能需要.(服务器端)

NT LM Security support provider-telnet 服务用的东东——关!!!

NVIDIA Driver Helper service -nvidia显卡帮助,关!

PDEngine - perfectdisk 引擎

PDScheduler -perfectdisk计划服务

PerFORMance logs and alerts-记录机器运行状况而且定时写入日志或发警告,内容可能过于专业,所以自己决定。

*Plug and Play-自动查测新装硬件,即插即用,开着吧~~~

Portable media serial number-绝对无用,无聊之及。透过联机计算机重新取得任何音乐这个服务其实非常简单,它是微软用来防盗版的工具之一,但目前基本上只是针对音乐。——关!

Print Spooler -打印机用的,没有打印机的话——关!

Protected Storage-储存本地密码和网上服务密码的服务,包括填表时的“自动完成”功能。

QoS RSVP -关!就是那个20%的 QoS默认安装的启动类型是手动,依赖于AFD Networking Support ... 因此,对于WinXP中的QoS RSVP服务保留了20% 的网络带宽也就不足为奇了,由于对于个人应用几乎毫无意义,禁用它是不二选择

Remote access auto connection manager-宽带者/网络共享可能需要!!

Remote desktop help session manager-远程帮助服务,占用4兆内存——关!

*Remote Procedure Call (RPC) -系统核心服务!

Remote Procedure Call LOCATOR-这个倒没什么用,管理 RPC 数据库服务,占用1兆内存。

remote registry -远程注册表运行/修改——关!!

removable storage -一般情况下不用,磁带备份用的。

routing and remote access-数据库!

secondary logon-给与administrator 以外的用户分配指定操作权.——关!

security accounts manager-像 Protected Storage, IIS Admin 才需要。

server -局域网文件/打印共享需要的。

shell hardware detection-给有些配置自动启动,像内存棒,和有些cd驱动等

smart card1.4兆内存 ——


smart card helper描述为“提供对连接到计算机上旧式智能卡的支持——关!

SSDP Discovery service-没有什么硬件利用这个服务——关!

system event notification-记录用户登录/注销/重起/关机信息——关!

system restore service -系统还原服务,吃资源和内存的怪兽——关!

task scheduler-windows计划服务——关!

TCP/IP NetBIOS helper-如果你的网络不用 Netbios 或WINS,关了.

Telephony -拨号服务,如果你的宽带不用拨号,那么关了它。

telnet -大漏洞,2兆内存——关!

terminal services-实现远程登录本地电脑,快速用户切换和远程桌面功能需要,不用这些功能就关了吧。

themes -给xp打扮的东东,不要太花锹的就关了。

uninterruptible power supply-停电保护设备用的——关!

universal plug and play device host-同SSDP Discovery Service ,没用——关!

upload manager-用来实现服务器和客户端输送文件的服务,简单文件传输不需要这个!

volume shadow copy-同MS Software Shadow Copy Provider,无用——关!

webclient-可能和以后的.net技术有联系,安全第一——关!

*Windows Audio - 控制着你听到的声音。关了就没声音了!!

Windows Installer -windows的MSI安装服务,建议设成手动。

windows image acquisition (WIA) -有些数码相机和扫描器用的,我的扫描器觉得它没用。

*Windows Management Instrumentation - 满重要的服务,是管"服务依靠"的,但关了会出现奇怪的问题.

services.msc

可以选择关闭,手动,还是自动. 自动为跟windows一起启动。 手动为需要时它自行启动。 关闭为永远不启动。


 

what is after install windows (xp)

<<sysconfig>>
IMJPMIG , TINTSETP, JUSCHED, CTFMON


<< Running >>
lsass Local Security Authorit Server
csrss Child Session
rdpclip.exe terminal server , file copy
ctfmon keydfboard
rstray 需星
RavTray
Mainctrl
Bacstray Broadcom Advanced Control Suite Application
PhDesktop 花生殼
Conime 輸入法 bfghost1
jucheck Java Update Check
cmd
monc.exe Control Panel
smss
winlogon
lsass
mstask.exe
svchost.exe

<< open Port >>
389 LDAP Lightweight Directory Access Protocol
445 SMB Server necessary Block
21 ftp
25 smtp
80 http
135 msrpc
139 netbios-ssn
143 imap
443 https
445 smicrosoft-ds
1025 nfs-or iis
1026 lsa-or-ntern
1031 iad2
3372 msdtc
3389 ms-term-serv
6000 x11,winmail admin
6080 webmail

2013年6月30日 星期日

windows disk (disk tunning example, view disk)

windows disk command

cleanmgr
diskmgmt.msc
dfrg.msc
devmemg.msc
chkdisk /f
rd /s /q  %windir%\temp & md %windir%\temp

2013年6月29日 星期六

windows network command (lan command , windows tunning, troubleshooting)

network command


  • control netconnections
  • icwconnl.exe
  • net view
  • tracert REM trace router ,e.g. tracert 8.8.8.8
  • mstsc : terminal server
  • netsh winsock reset
  • nslookup
  • netstat -a : open port
  • netstat -an : list Listening port , active connection , foreign and local
  • netstat -nb : list to background program name
  • netstat -on : list the pid number
  • netstat
  • nbstat -s
  • nbstat -r ## view domain
  • edit \windows\system32\drivers\etc\hosts //for localhost 127.0.0.1 setting //
  • ipconfig
  • tracert 8.8.8.8
  • hostname
  • nbtstat -s //net bios status //
  • route print
  • ping -t 333.444.555.666
  • route -padd 192.168.10.0 mask 255.255.255.0 192.168.65.31
  • route print
  • fport && view open port

windows bat (batch)

Filename.bat

copy %1 i:\mis\it\*.* :: parameter

@ECHO OFF
REM - LABEL INDICATING THE BEGINNING OF THE DOCUMENT.
:BEGIN
CLS
REM - THE BELOW LINE GIVES THE USER 3 CHOICES (DEFINED AFTER /C:)
CHOICE /N /C:123 PICK A NUMBER (1, 2, or 3)%1
REM - THE NEXT THREE LINES ARE DIRECTING USER DEPENDING UPON INPUT
IF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END
:THREE
ECHO YOU HAVE PRESSED THREE
GOTO END
:TWO
ECHO YOU HAVE PRESSED TWO
GOTO END
:ONE
ECHO YOU HAVE PRESSED ONE
:END

IF exist a.txt echo del a.txt 如果a.txt存在則刪除他
if exist aa.tmp net send user a message

@ echo off
set var1125a=var
set var1125b=40962 :: set variable
@for /f "tokens=1-5 delims=: " %%d in ("%time%") do @set temptmp=%%d
if %temptmp%==8 IF exist temp7.tmp net send %var1125b% %var1125a% transfer 2 if condition
:: call variable by %variable%

Windows Blue Screen

Windows Blue Screen

0 0x0000 作業完成。
1 0x0001 不正確的函數。
2 0x0002 系統找不到指定的檔案。
3 0x0003 系統找不到指定的路徑。
4 0x0004 系統無法開啟檔案。
5 0x0005 拒絕存取。
6 0x0006 無效的代碼。
7 0x0007 儲存體控制區塊已毀。
8 0x0008 儲存體空間不足,無法處理這個指令。
9 0x0009 儲存體控制區塊位址無效。
10 0x000A 環境不正確。
11 0x000B 嘗試載入一個格式錯誤的程-式。
12 0x000C 存取碼錯誤。
13 0x000D 資料錯誤。
14 0x000E 儲存體空間不夠,無法完成這項作業。
15 0x000F 系統找不到指定的磁碟機。
16 0x0010 無法移除目錄。
17 0x0011 系統無法將檔案移到 其他的磁碟機。
18 0x0012 沒有任何檔案。
19 0x0013 儲存媒體為防寫狀態。
20 0x0014 系統找不到指定的裝置。
21 0x0015 裝置尚未就緒。
22 0x0016 裝置無法識別指令。
23 0x0017 資料錯誤 (cyclic redundancy check)
24 0x0018 程-式發出一個長 度錯誤的指令。
25 0x0019 磁碟機在磁碟找不到 持定的磁區或磁軌。
26 0x001A 指定的磁碟或磁片無法存取。
27 0x001B 磁碟機找不到要求的磁區。
28 0x001C 印表機沒有紙。
29 0x001D 系統無法將資料寫入指定的磁碟機。
30 0x001E 系統無法讀取指定的裝置。
31 0x001F 連接到系統的某個裝置沒有作用。
32 0x0020 The process cannot access the file because it is being used by another process.
33 0x0021 檔案的一部份被鎖定, 現-在無法存取。
34 0x0022 磁碟機的磁片不正確。
36 0x0024 開啟的分享檔案數量太多。
38 0x0026 到達檔案結尾。
39 0x0027 磁碟已滿。
50 0x0032 不支援這種網路要求。
51 0x0033 遠端電腦無法使用。
52 0x0034 網路名稱重複。
53 0x0035 網路路徑找不到。
54 0x0036 網路忙碌中。
55 0x0037 The specified network resource or device is no longer available.
56 0x0038 The network BIOS command limit has been reached.
57 0x0039 網路配接卡發生問題。
58 0x003A 指定的伺服器無法執行要求的作業。
59 0x003B 網路發生意外錯誤。
60 0x003C 遠端配接卡不相容。
61 0x003D 印表機佇列已滿。
62 0x003E 伺服器的空間無法儲存等候列印的檔案。
63 0x003F 等候列印的檔案已經刪除。
64 0x0040 指定的網路名稱無法使用。
65 0x0041 拒絕存取網路。
66 0x0042 網路資源類型錯誤。
67 0x0043 網路名稱找不到。
68 0x0044 超過區域電腦網路配接卡的名稱限制。
69 0x0045 超過網路 BIOS 作業階段的限制。
70 0x0046 遠端伺服器已經暫停或者正在起始中。
71 0x0047 由於連線數目已達上限,此時無法再連線到這台遠端電腦。
72 0x0048 指定的印表機或磁碟裝置已經暫停作用。
80 0x0050 檔案已經存在。
82 0x0052 無法建立目錄或檔案。
83 0x0053 INT 24 失敗
84 0x0054 處理這項要求的儲存體無法使用。
85 0x0055 近端裝置名稱已經在使用中。
86 0x0056 指定的網路密碼錯誤。
87 0x0057 參數錯誤。
88 0x0058 網路發生資料寫入錯誤。
89 0x0059 此時系統無法執行其他行程-。
100 0x0064 無法建立其他的系統 semaphore。
101 0x0065 屬於其他行程-專用的 semaphore 。
102 0x0066 semaphore 已經設定,而且無法關閉。
103 0x0067 無法指定 semaphore 。
104 0x0068 在岔斷時間無法要求專用的 semaphore 。
105 0x0069 此 semaphore 先前的擁有權已經結束。
106 0x006A 請將磁片插入 %1。
107 0x006B 因為代用的磁片尚未插入,所以程-式已經停止。
108 0x006C 磁碟正在使用中或被鎖定。
109 0x006D Pipe 已經中止。
110 0x006E 系統無法開啟指定的 裝置或檔案。
111 0x006F 檔名太長。
112 0x0070 磁碟空間不足。
113 0x0071 沒有可用的內部檔案識別字。
114 0x0072 目標內部檔案識別字不正確。
117 0x0075 由應用程-式所執行的 IOCTL 呼叫 不正確。
118 0x0076 寫入驗證參數值不正確。
119 0x0077 系統不支援所要求的指令。
120 0x0078 此項功能僅在 Win32 模式有效。
121 0x0079 semaphore 超過逾時期間。
122 0x007A 傳到系統呼叫的資料區域 太小。
123 0x007B 檔名、目錄名稱或儲存體標籤語法錯誤。
124 0x007C 系統呼叫層次不正確。
125 0x007D 磁碟沒有設定標籤。
126 0x007E 找不到指定的模組。
127 0x007F 找不到指定的程-序。
128 0x0080 沒有子行程-可供等待。
129 0x0081 %1 這個應用程-式無法在 Win32 模式下執行。
130 0x0082 Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
131 0x0083 嘗試將檔案指標移至檔案開頭之前。
132 0x0084 無法在指定的裝置或檔案,設定檔案指標。
133 0x0085 JOIN 或 SUBST 指令 無法用於 內含事先結合過的磁碟機。
134 0x0086 嘗試在已經結合的磁碟機,使用 JOIN 或 SUBST 指令。
135 0x0087 嘗試在已經替換的磁碟機,使 用 JOIN 或 SUBST 指令。
136 0x0088 系統嘗試刪除 未連結過的磁碟機的連結關係。
137 0x0089 系統嘗試刪除 未替換過的磁碟機的替換關係。
138 0x008A 系統嘗試將磁碟機結合到已經結合過之磁碟機的目錄。
139 0x008B 系統嘗試將磁碟機替換成已經替換過之磁碟機的目錄。
140 0x008C 系統嘗試將磁碟機替換成已經替換過之磁碟機的目錄。
141 0x008D 系統嘗試將磁碟機 SUBST 成已結合的磁碟機 目錄。
142 0x008E 系統此刻無法執行 JOIN 或 SUBST。
143 0x008F 系統無法將磁碟機結合或替換同一磁碟機下目錄。
144 0x0090 這個目錄不是根目錄的子目錄。
145 0x0091 目錄仍有資料。
146 0x0092 指定的路徑已經被替換過。
147 0x0093 資源不足,無法處理這項 指令。
148 0x0094 指定的路徑這時候無法使用。
149 0x0095 嘗試要結合或替換的磁碟機目錄,是已經替換過的的目標。
150 0x0096 CONFIG.SYS 檔未指定系統追蹤資訊,或是追蹤功能被取消。
151 0x0097 指定的 semaphore事件 DosMuxSemWait 數目不正確。
152 0x0098 DosMuxSemWait 沒有執行;設定太多的 semaphore。
153 0x0099 DosMuxSemWait 清單不正確。
154 0x009A 您所輸入的儲存媒體標 元長度限制。
155 0x009B 無法建立其他的執行緒。
156 0x009C 接收行程-拒絕接受信號。
157 0x009D 區段已經被捨棄,無法被鎖定。
158 0x009E 區段已經解除鎖定。
159 0x009F 執行緒識別碼的位址不正確。
160 0x00A0 傳到 DosExecPgm 的引數字串不正確。
161 0x00A1 指定的路徑不正確。
162 0x00A2 信號等候處理。
164 0x00A4 系統無法建立執行緒。
167 0x00A7 無法鎖定檔案的部份範圍。
170 0x00AA 所要求的資源正在使用中。
173 0x00AD 取消範圍的鎖定要求不明顯。
174 0x00AE 檔案系統不支援自動變更鎖定類型。
180 0x00B4 系統發現-不正確的區段號碼。
182 0x00B6 作業系統無法執行。
183 0x00B7 檔案已存在,無法建立同一檔案。
186 0x00BA 傳送的旗號錯誤。
187 0x00BB 指定的系統旗?鉹ㄗ魽C
188 0x00BC 作業系統無法執行。
189 0x00BD 作業系統無法執行。
190 0x00BE 作業系統無法執行。
191 0x00BF 無法在 Win32 模式下執行。
192 0x00C0 作業系統無法執行。
193 0x00C1 %1 不是正確的 Win32 應用程-式。
194 0x00C2 作業系統無法執行。
195 0x00C3 作業系統無法執行。
196 0x00C4 作業系統無法執行 這個應用程-式。
197 0x00C5 作業系統目前無法執行 這個應用程-式。
198 0x00C6 作業系統無法執行。
199 0x00C7 作業系統無法執行 這個應用程-式。
200 0x00C8 程-式碼的區段不可以大於或等於 64KB。
201 0x00C9 作業系統無法執行。
202 0x00CA 作業系統無法執行。
203 0x00CB 系統找不到輸入的環境選項。
205 0x00CD 在指令子目錄下,沒有任何行程-有信號副處理程-式。
206 0x00CE 檔案名稱或副檔名太長。
207 0x00CF ring 2 堆疊使用中。
208 0x00D0 輸入的通用檔名字元 * 或 ? 不正確, 或指定太多的通用檔名字元。
209 0x00D1 所傳送的信號不正確。
210 0x00D2 無法設定信號處理程-式。
212 0x00D4 區段被鎖定,而且無法重新配置。
214 0x00D6 附加到此程-式或動態連結模組的動態連結模組太多。
215 0x00D7 Can't nest calls to LoadModule.
230 0x00E6 The pipe state is invalid.
231 0x00E7 所有的 pipe instances 都在忙碌中。
232 0x00E8 The pipe is being closed.
233 0x00E9 No process is on the other end of the pipe.
234 0x00EA 有更多可用的資料。
240 0x00F0 作業階段被取消。
254 0x00FE 指定的延伸屬性名稱無效。
255 0x00FF 延伸的屬性不一致。
259 0x0103 沒有可用的資料。
266 0x010A 無法使用 Copy API。
267 0x010B 目錄名稱錯誤。
275 0x0113 延伸屬性不適用於緩衝區。
276 0x0114 在外掛的檔案系統上的延伸屬性檔案已經毀損。
277 0x0115 延伸屬性表格檔滿。
278 0x0116 指定的延伸屬性代碼無效。
282 0x011A 外掛的這個檔案系統不支援延伸屬性。
288 0x0120 意圖釋放不屬於叫用者的 mutex。
298 0x012A semaphore 傳送次數過多。
299 0x012B 只完成 Read/WriteProcessMemory 的部份要求。
317 0x013D 系統找不到位於訊息檔 %2 中編號為 0x%1 的訊息。
487 0x01E7 嘗試存取無效的位址。
534 0x0216 運算結果超過 32 位元。
535 0x0217 通道的另一端有一個行程-在接送資料。
536 0x0218 等候行程-來開啟通道的另一端。
994 0x03E2 存取延伸的屬性被拒。
995 0x03E3 由於執行緒結束或應用程-式要求,而異常終止 I/O 作業。
996 0x03E4 重疊的 I/O 事件不是設定成通知狀態。
997 0x03E5 正在處理重疊的 I/O 作業。
998 0x03E6 對記憶體位置的無效存取。
999 0x03E7 執行 inpage 作業發生錯誤。
1001 0x03E9 遞迴太深,堆疊滿溢。
1002 0x03EA 視窗無法用來傳送訊息。
1003 0x03EB 無法完成這項功能。
1004 0x03EC 旗號無效。
1005 0x03ED 儲存媒體未含任何可辨識的檔案系統。 請確定以載入所需的系統驅動程-式,而且該儲存媒體並未毀損。
1006 0x03EE 儲存該檔案的外部媒體發出警告, 表示該已開啟檔案已經無效。
1007 0x03EF 所要求的作業無法在全螢幕模式下執行。
1008 0x03F0 An attempt was made to reference a token that does not exist.
1009 0x03F1 組態系統登錄資料庫毀損。
1010 0x03F2 組態系統登錄機碼無效。
1011 0x03F3 無法開啟組態系統登錄機碼。
1012 0x03F4 無法讀取組態系統登錄機碼。
1013 0x03F5 無法寫入組態系統登錄機碼。
1014 0x03F6 系統登錄資料庫中的一個檔案必須使用記錄或其他備份還原。 已經還原成功。
1015 0x03F7 系統登錄毀損。其中某個檔案毀損、或者該檔案的 系統映對記憶體內容毀損、會是檔案無法復原。
1016 0x03F8 系統登錄起始的 I/O 作業發生無法復原的錯誤。 系統登錄無法讀入、寫出或更新,其中的一個檔案 內含系統登錄在記憶體中的內容。
1017 0x03F9 系統嘗試將檔案載入系統登錄或將檔案還原到系統登錄中, 但是,指定檔案的格式不是系統登錄檔的格式。
1018 0x03FA 嘗試在標示為刪除的系統登錄機碼,執行不合法的操作。
1019 0x03FB 系統無法配置系統登錄記錄所需的空間。
1020 0x03FC 無法在已經有子機碼或數值的系統登錄機碼建立符號連結。
1021 0x03FD 無法在臨-時機碼下建立永久的子機碼。
1022 0x03FE 變更要求的通知完成,但資訊 並未透過呼叫者的緩衝區傳回。呼叫者現-在需要自行列舉檔案,找出變更的地方。
1051 0x041B 停止控制已經傳送給其他服務 所依峙的一個服務。
1052 0x041C 要求的控制對此服務無效
1053 0x041D The service did not respond to the start or control request in a timely fashion. 1054 0x041E 無法建立服務的執行緒。
1055 0x041F 服務資料庫被鎖定。
1056 0x0420 這種服務已經在執行。
1057 0x0421 帳戶名稱錯誤或者不存在。
1058 0x0422 指定的服務暫停作用,無法啟動。
1059 0x0423 指定循環服務從屬關係。
1060 0x0424 指定的服務不是安裝進來的服務。
1061 0x0425 該服務項目此時無法接收控制訊息。
1062 0x0426 服務尚未啟動。
1063 0x0427 無法連線到服務控制程-式。
1064 0x0428 處理控制要求時,發生意外狀況。
1065 0x0429 指定的資料庫不存在。
1066 0x042A 服務傳回專屬於服務的錯誤碼。
1067 0x042B The process terminated unexpectedly.
1068 0x042C 從屬服務或群組無法啟動。
1069 0x042D 因為登入失敗,所以沒有啟動服務。
1070 0x042E 在啟動之後,服務在啟動狀態時當機。
1071 0x042F 指定服務資料庫鎖定無效。
1072 0x0430 指定的服務已經標示為刪除。
1073 0x0431 指定的服務已經存在。
1074 0x0432 系統目前正以上一次執行成功的組態執行。
1075 0x0433 從屬服務不存在,或已經標示為刪除。
1076 0x0434 目前的啟動已經接受上一次執行成功的 控制設定。
1077 0x0435 上一次啟動之後,就沒有再啟動服務。
1078 0x0436 指定的名稱已經用於服務名稱或服務顯示 名稱。
1100 0x044C 已經到了磁帶的最後。
1101 0x044D 到了檔案標示。
1102 0x044E 遇到磁帶的開頭或分割區。
1103 0x044F 到了檔案組的結尾。
1104 0x0450 磁帶沒有任何資料。
1105 0x0451 磁帶無法製作分割區。
1106 0x0452 存取多重容體的新磁帶時,發現-目前 區塊大小錯誤。
1107 0x0453 載入磁帶時,找不到磁帶分割區資訊。
1108 0x0454 無法鎖住儲存媒體退帶功能。
1109 0x0455 無法解除載入儲存媒體。
1110 0x0456 磁碟機中的儲存媒體已經變更。
1111 0x0457 已經重設 I/O 匯流排。
1112 0x0458 磁碟機沒有任何儲存媒體。
1113 0x0459 目標 multi-byte code page,沒有對應 Unicode 字元。
1114 0x045A 動態連結程-式庫 (DLL) 起始常式失敗。
1115 0x045B 系統正在關機。
1116 0x045C 無法中止系統關機,因為沒有關機的動作在進行中。
1117 0x045D 因為 I/O 裝置發生錯誤,所以無法執行要求。
1118 0x045E 序列裝置起始失敗,會取消載入序列驅動程-式。
1119 0x045F 無法開啟裝置。這個裝置與其他裝置共用岔斷要求 (IRQ)。 至少已經有一個使用同一IRQ 的其他裝置已經開啟。
1120 0x0460 A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
1121 0x0461 因為已經過了逾時時間,所以序列 I/O 作業完成。(IOCTL_SERIAL_XOFF_COUNTER 不是零。)
1122 0x0462 在磁片找不到任何的 ID 位址標示。
1123 0x0463 磁片磁區 ID 欄位與磁片控制卡追蹤位址 不符。
1124 0x0464 軟式磁碟機控制卡回報了一個軟式磁碟機驅動程-式無法識別 的錯誤。
1125 0x0465 軟式磁碟機控制卡傳回與暫存器中不一致的結果。
1126 0x0466 存取硬碟失敗,重試後也無法作業。
1127 0x0467 存取硬碟失敗,重試後也無法作業。
1128 0x0468 存取硬碟時,必須重設磁碟控制卡,但是 連重設的動作也失敗。
1129 0x0469 到了磁帶的最後。
1130 0x046A 可用伺服器儲存空間不足,無法處理這項指令。
1131 0x046B 發現-潛在的鎖死條件。
1132 0x046C 指定的基本位址或檔案位移沒有適當 對齊。
1140 0x0474 嘗試變更系統電源狀態,但其他的應用程-式或驅動程-式拒絕。
1141 0x0475 系統 BIOS 無法變更系統電源狀態。
1150 0x047E 指定的程-式需要新的 Windows 版本。
1151 0x047F 指定的程-式不是 Windows 或 MS-DOS 程-式。
1152 0x0480 指定的程-式已經啟動,無法再啟動一次。
1153 0x0481 指定的程-式是為舊版的 Windows 所寫的。
1154 0x0482 執行此應用程-式所需的程-式庫檔案之一毀損。
1155 0x0483 沒有應用程-式與此項作業的指定檔案建立關聯。
1156 0x0484 傳送指令到應用程-式發生錯誤。
1157 0x0485 找不到執行此應用程-式所需的程-式庫檔案。
1200 0x04B0 指定的裝置名稱無效。
1201 0x04B1 裝置現-在雖然未連線,但是它是一個記憶連線。
1202 0x04B2 嘗試記憶已經記住的裝置。
1203 0x04B3 提供的網路路徑找不到任何網路提供程-式。
1204 0x04B4 指定的網路提供程-式名稱錯誤。
1205 0x04B5 無法開啟網路連線設定檔。
1206 0x04B6 網路連線設定檔壞掉。
1207 0x04B7 無法列舉非容器。
1208 0x04B8 發生延伸的錯誤。
1209 0x04B9 指定的群組名稱錯誤。
1210 0x04BA 指定的電腦名稱錯誤。
1211 0x04BB 指定的事件名稱錯誤。
1212 0x04BC 指定的網路名稱錯誤。
1213 0x04BD 指定的服務名稱錯誤。
1214 0x04BE 指定的網路名稱錯誤。
1215 0x04BF 指定的資源分享名稱錯誤。
1216 0x04C0 指定的密碼錯誤。
1217 0x04C1 指定的訊息名稱錯誤。
1218 0x04C2 指定的訊息目的地錯誤。
1219 0x04C3 所提供的條件與現-有的條件組發生衝突。
1220 0x04C4 嘗試與網路伺服器連線,但是 與該伺服器的連線已經太多。
1221 0x04C5 其他網路電腦已經在使用這個工作群組或網域名稱。
1222 0x04C6 網路沒有顯示出來或者沒有啟動。
1223 0x04C7 使用者已經取消作業。
1224 0x04C8 要求的作業無法在已經開啟使用者對應區段的檔案執行。
1225 0x04C9 遠端系統拒絕網路連線。
1226 0x04CA 關閉網路連線。
1227 0x04CB 網路傳輸端點已經有相關連的位址。
1228 0x04CC 位址尚未有相關的網路端點。
1229 0x04CD 嘗試在不存在的網路連線作業。
1230 0x04CE 在作用中的網路連線上執行無效的作業。
1231 0x04CF 無法傳輸到遠端網路。
1232 0x04D0 無法連線到遠端系統。
1233 0x04D1 遠端系統不支援傳輸通訊協定。
1234 0x04D2 遠端系統的目的地網路端點沒有作何執行中的服務。
1235 0x04D3 要求已經中止。
1236 0x04D4 進端系統已經中斷網路連線。
1237 0x04D5 無法完成作業,請重試。
1238 0x04D6 無法與伺服器連線,原因是這個帳戶已經到達同時連線數目 的上限。
1239 0x04D7 嘗試在這個帳戶未授權的時間登入網路。
1240 0x04D8 這個帳戶無法從這個地方登入網路。
1241 0x04D9 網路位址無法用於這個要求的作業。
1242 0x04DA 服務已經登記。
1243 0x04DB 指定的服務不存在。
1244 0x04DC 作業無法執行,原因是使用者尚未授權使用。