1983 Bill Gates announces Microsoft Windows November 10, 1983.
1985 Microsoft Windows 1.0 is introduced in November 20, 1985 and is initially sold for $100.00.
1987 Microsoft Windows 2.0 was released December 9, 1987 and is initially sold for $100.00.
1987 Microsoft Windows/386 or Windows 386 is introduced December 9, 1987 and is initially sold for $100.00.
1988 Microsoft Windows/286 or Windows 286 is introduced June, 1988 and is initially sold for $100.00.
1990 Microsoft Windows 3.0 was released May, 22 1990. Microsoft Windows 3.0 full version was priced at $149.95 and the upgrade version was priced at $79.95.
1991 Following its decision not to develop operating systems cooperatively with IBM, Microsoft changes the name of OS/2 to Windows NT.
1991 Microsoft Windows 3.0 or Windows 3.0a with multimedia was released October, 1991.
1992 Microsoft Windows 3.1 was released April, 1992 and sells more than 1 Million copies within the first two months of its release.
1992 Microsoft Windows for Workgroups 3.1 was released October, 1992.
1993 Microsoft Windows NT 3.1 was released July 27, 1993.
1993 MicrosoftWindows 3.11, an update to Windows 3.1 is released December 31, 1993.
1993 The number of licensed users of Microsoft Windows now totals more than 25 Million.
1994 Microsoft Windows for Workgroups 3.11 was released February, 1994.
1994 Microsoft Windows NT 3.5 was released September 21, 1994.
1995 Microsoft Windows NT 3.51 was released May 30, 1995.
1995 Microsoft Windows 95 was released August 24, 1995 and sells more than 1 Million copies within 4 days.
1996 Microsoft Windows NT 4.0 was released July 29, 1996.
1996 Microsoft Windows CE 1.0 was released November, 1996.
1997 Microsoft Windows CE 2.0 was released November, 1997.
1998 Microsoft Windows 98 was released June, 1998.
1998 Microsoft Windows CE 2.1 was released July, 1998.
1998 In October of 1998 Microsoft announced that future releases of Windows NT would no longer have the initials of NT and that the next edition would be Windows 2000.
1999 Microsoft Windows 98 SE (Second Edition) was released May 5, 1999.
1999 Microsoft Windows CE 3.0 was released 1999.
2000 On January 4th at CES Bill Gates announces the new version of Windows CE will be called Pocket PC.
2000 Microsoft Windows 2000 was released February 17, 2000.
2000 Microsoft Windows ME (Millennium) released June 19, 2000.
2001 Microsoft Windows XP is released October 25, 2001.
2001 Microsoft Windows XP 64-Bit Edition (Version 2002) for Itanium systems is released March 28, 2003.
2003 Microsoft Windows Server 2003 is released March 28, 2003.
2003 Microsoft Windows XP 64-Bit Edition (Version 2003) for Itanium 2 systems is released on March 28, 2003.
2003 Microsoft Windows XP Media Center Edition 2003 is released on December 18, 2003.
2004 Microsoft Windows XP Media Center Edition 2005 is released on October 12, 2004.
2005 Microsoft Windows XP Professional x64 Edition is released on April 24, 2005.
2005 Microsoft announces it's next operating system, codenamed "Longhorn" will be named Windows Vista on July 23, 2005.
2006 Microsoft releases Microsoft Windows Vista to corporations on November 30, 2006.
2007 Microsoft releases Microsoft Windows Vista and Office 2007 to the general public January 30, 2007.
2009 Microsoft releases Windows 7 October 22, 2009.
Thursday, December 9, 2010
Sunday, November 28, 2010
Microsoft DOS xcopy command
About xcopy
Xcopy is a powerful version of the copy command with additional features; has the capability of moving files, directories, and even whole drives from one location to another.
Syntax
XCOPY "source" "destination" [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U]
[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/EXCLUDE:file1[+file2][+file3]...]
Eg; xcopy "\\127.0.0.1\temp\saplogon.ini" "%windir%\" /S /E /H /Y
source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1 [+file2][+file3]... Specifies a list of files containing strings. When any of the strings match any part of the absolute path of the file to be copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P-Prompts you before creating each destination file.
/S-Copies directories and subdirectories except empty ones.
/E-Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V-Verifies each new file.
/W-Prompts you to press a key before copying.
/C-Continues copying even if errors occur.
/I-If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q-Does not display file names while copying.
/F-Displays full source and destination file names while copying.
/L-Displays files that would be copied.
/H-Copies hidden and system files also.
/R-Overwrites read-only files.
/T-Creates directory structure, but does not copy files. Does not include empty directories or subdirectories. /T /E includes empty directories and subdirectories.
/U-Copies only files that already exist in destination.
/K-Copies attributes. Normal Xcopy will reset read-only attributes.
/N-Copies using the generated short names.
/O-Copies file ownership and ACL information.
/X-Copies file audit settings (implies /O).
/Y-Suppresses prompting to confirm you want to overwrite an existing destination file.
/-Y-Causes prompting to confirm you want to overwrite an existing destination file.
/Z-Copies networked files in restartable mode.
Xcopy is a powerful version of the copy command with additional features; has the capability of moving files, directories, and even whole drives from one location to another.
Syntax
XCOPY "source" "destination" [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/H] [/R] [/T] [/U]
[/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z] [/EXCLUDE:file1[+file2][+file3]...]
Eg; xcopy "\\127.0.0.1\temp\saplogon.ini" "%windir%\" /S /E /H /Y
source Specifies the file(s) to copy.
destination Specifies the location and/or name of new files.
/D:m-d-y Copies files changed on or after the specified date. If no date is given, copies only those files whose source time is newer than the destination time.
/EXCLUDE:file1 [+file2][+file3]... Specifies a list of files containing strings. When any of the strings match any part of the absolute path of the file to be copied, that file will be excluded from being copied. For example, specifying a string like \obj\ or .obj will exclude all files underneath the directory obj or all files with the .obj extension respectively.
/P-Prompts you before creating each destination file.
/S-Copies directories and subdirectories except empty ones.
/E-Copies directories and subdirectories, including empty ones. Same as /S /E. May be used to modify /T.
/V-Verifies each new file.
/W-Prompts you to press a key before copying.
/C-Continues copying even if errors occur.
/I-If destination does not exist and copying more than one file, assumes that destination must be a directory.
/Q-Does not display file names while copying.
/F-Displays full source and destination file names while copying.
/L-Displays files that would be copied.
/H-Copies hidden and system files also.
/R-Overwrites read-only files.
/T-Creates directory structure, but does not copy files. Does not include empty directories or subdirectories. /T /E includes empty directories and subdirectories.
/U-Copies only files that already exist in destination.
/K-Copies attributes. Normal Xcopy will reset read-only attributes.
/N-Copies using the generated short names.
/O-Copies file ownership and ACL information.
/X-Copies file audit settings (implies /O).
/Y-Suppresses prompting to confirm you want to overwrite an existing destination file.
/-Y-Causes prompting to confirm you want to overwrite an existing destination file.
/Z-Copies networked files in restartable mode.
Friday, July 2, 2010
How to Install WSUS 3.0 SP2 on RoDC
What you need to do to install WSUS on an RODC , is first create the
"WSUS Administrators" and "WSUS Reporters" group on a ReadWrite DC, and force a replication to the RODC. Then install WSUS. Now the WSUS installer will see that the groups already exist, and not try to create them.
Becouse on an RODC, there is no local SAM, and the WSUS installer cannot write to the directory store to create the groups.
"WSUS Administrators" and "WSUS Reporters" group on a ReadWrite DC, and force a replication to the RODC. Then install WSUS. Now the WSUS installer will see that the groups already exist, and not try to create them.
Becouse on an RODC, there is no local SAM, and the WSUS installer cannot write to the directory store to create the groups.
Saturday, June 19, 2010
How to check DC&RODC authentication issues
By default, client will contact the DC in same site. And the site is configured in “AD sites and services”. We can simulate the DC locator process and gather network monitor package to see what happens during finding DC. Following is action plan:
Download Network Monitor 3.3 and install it on client (by default path)
http://www.microsoft.com/downloads/details.aspx?FamilyID=983b941d-06cb-4658-b7f6-3088333d062f&displaylang=en
Nltest.exe is a command tool in “support tools”. Please download support tool from:
http://www.microsoft.com/downloads/details.aspx?FamilyID=6ec50b78-8be1-4e81-b3be-4e7ac4f0912d&DisplayLang=en.
On client, open a command prompt and run following command to start Network Monitor:
"%ProgramFiles%\Microsoft Network Monitor 3\nmcap" /network * /capture /file %ComputerName%_test.cap:50M /DisableConversations /DisableLocalOnly
On client, open another command prompt, navigate the path in which nltest.ext resides, run following command:
ipconfig /flushdns
nltest /dsgetdc:domainname /force > dsgetdc.txt
nltest /dsgetsite > dsgetsite.txt
set l > setl.txt
NOTE:please place the “domainname” with your real domain name
In the command prompt of step 3, click “CTRL+C” to stop network monitor. The log is at current path.
Find the dsgetdc.txt ,dsgetsite.txt and setl.txt result s in same place
Download Network Monitor 3.3 and install it on client (by default path)
http://www.microsoft.com/downloads/details.aspx?FamilyID=983b941d-06cb-4658-b7f6-3088333d062f&displaylang=en
Nltest.exe is a command tool in “support tools”. Please download support tool from:
http://www.microsoft.com/downloads/details.aspx?FamilyID=6ec50b78-8be1-4e81-b3be-4e7ac4f0912d&DisplayLang=en.
On client, open a command prompt and run following command to start Network Monitor:
"%ProgramFiles%\Microsoft Network Monitor 3\nmcap" /network * /capture /file %ComputerName%_test.cap:50M /DisableConversations /DisableLocalOnly
On client, open another command prompt, navigate the path in which nltest.ext resides, run following command:
ipconfig /flushdns
nltest /dsgetdc:domainname /force > dsgetdc.txt
nltest /dsgetsite > dsgetsite.txt
set l > setl.txt
NOTE:please place the “domainname” with your real domain name
In the command prompt of step 3, click “CTRL+C” to stop network monitor. The log is at current path.
Find the dsgetdc.txt ,dsgetsite.txt and setl.txt result s in same place
Subscribe to:
Posts (Atom)