Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
howto:windowshowto [2013/04/12 02:59] – [Installing Windows 7 from USB FLASH drive] adminhowto:windowshowto [2014/12/21 18:07] – [Running Symantec SRD from USB] admin
Line 6: Line 6:
  
 Use EaseUS partiotion manager: [[http://www.partition-tool.com/|Free EaseUS Home Edition]] Use EaseUS partiotion manager: [[http://www.partition-tool.com/|Free EaseUS Home Edition]]
 +
 +=== Using Diskpart ===
 +In the command shell window, type diskpart and then press Enter.
 +  - Type "list disk" and then press Enter. You should see an entry for each hard disk that is installed on the computer. You should also see an entry for the attached USB drive. Write down the disk number (for example, Disk 2) that represents the USB drive.
 +  - Type "select disk <n>" (where <n> is the disk number you wrote down) and then press Enter.
 +    * WARNING: Be sure you have identified the correct disk number of the USB drive. You are about to delete all files that are stored on the selected disk.
 +  - Type "clean" and then press Enter.
 +  - Type "create partition primary" and then press Enter.
 +  - Type "select partition 1" and then press Enter.
 +  - Type active and then press Enter.
 +  - Do one of the following:
 +    * Type "format fs=fat32 quick" and then press Enter.
 +    * Type "format fs=ntfs quick" and then press Enter.
 +  - Type "assign" and then press Enter.
 +  - Type "exit" and then press Enter.
  
 ==== Installing Windows XP from USB FLASH drive ==== ==== Installing Windows XP from USB FLASH drive ====
Line 29: Line 44:
 ==== Running Symantec SRD from USB ==== ==== Running Symantec SRD from USB ====
    
-http://www.symantec.com/connect/articles/techtip-installing-symantec-recovery-disk-srd-usb-flash-drive+  - [[http://www.symantec.com/connect/articles/techtip-installing-symantec-recovery-disk-srd-usb-flash-drive]] 
 +  - Alternatively, use [[http://www.majorgeeks.com/mg/getmirror/winusb_maker,1.html|ZOTAC WinUSB Maker v1.1.exe]] from Majorgeeks  
 +    * this will also work for SanDisk Cruiser USB sticks that are recognized as fixed disk and not removable 
 +    * http://joshcellsoftwares.com/products/zotacwinusbmaker/
 ===== How to change the Remote Desktop port in Windows XP ===== ===== How to change the Remote Desktop port in Windows XP =====
  
Line 76: Line 94:
  
 Done Done
 +
 +==== Setting up the NTP server on a domain controller ====
 +
 +For USA use timservers from NTP pool project: 
 +
 +    server 0.north-america.pool.ntp.org
 +    server 1.north-america.pool.ntp.org
 +    server 2.north-america.pool.ntp.org
 +    server 3.north-america.pool.ntp.org
 +per http://www.pool.ntp.org/zone/north-america
 +
 +From [[http://social.technet.microsoft.com/wiki/contents/articles/8863.time-service-configuration-on-dc-with-pdc-emulator-fsmo-role.aspx#Configure_External_Time_service_on_DC_holding_PDC_emulator_role|Technet]]:
 +
 +Configure External Time service on DC holding PDC emulator role
 +Here we will have to make use of External Time Source ( Internet). To Accomplish this follow below steps.
 +
 +  - Open a Command Prompt.
 +  - Type the following command to display the time difference between the local computer and a target computer, and then press ENTER:
 +
 +  w32tm /stripchart /computer: target /samples: n /dataonly
 +
 +  * target: Specifies the Domain Name System (DNS) name or IP address of the NTP server that you are comparing the local computer's time against, for example, time.windows.com.
 +  * n: Specifies the number of time samples that will be returned from the target computer to test basic NTP communication.
 +  * eg: w32tm /stripchart /computer:time.windows.com /samples:5 /dataonly
 +  - Open User Datagram Protocol (UDP) port 123 for outgoing traffic if needed.
 +  - Open UDP port 123 (or a different port that you have selected) for incoming NTP traffic.
 +  - Type the following command to configure the PDC emulator, and then press ENTER:
 +
 +  w32tm /config /manualpeerlist: peers /syncfromflags:manual /reliable:yes /update
 +
 +  * where peers specifies the list of DNS names or IP addresses of the NTP time source that the PDC emulator synchronizes from. For example, you can specify time.windows.com. When specifying multiple peers, use a coma as the delimiter and enclose them in quotation marks. 
 +  * For example, to configure your PDC emulator to use the following list of time servers: 
 +  * 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org 3.north-america.pool.ntp.org
 +  * Run the following command:
 +
 +  w32tm /config /manualpeerlist:"0.north-america.pool.ntp.org,1.north-america.pool.ntp.org,2.north-america.pool.ntp.org,3.north-america.pool.ntp.org" /reliable:yes /update
 +
 +Verify the settings in the Windows registry:
 +  * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters\Type should be NTP
 +  * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Config\AnnounceFlags should be 5
 +    * Note: If an authoritative time server that is configured to use an AnnounceFlag value of 0x5 does not synchronize with an upstream time server, a client server may not correctly synchronize with the authoritative time server when the time synchronization between the authoritative time server and the upstream time server resumes. Therefore, if you have a poor network connection or other concerns that may cause time synchronization failure of the authoritative server to an upstream server, set the AnnounceFlag value to 0xA instead of to 0x5. 
 +  * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpServer  Enabled = 1
 +  * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\Parameters NtpServer = 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org 3.north-america.pool.ntp.org
 +  * HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time\TimeProviders\NtpClient\SpecialPollInterval SpecialPollInterval = 900
 +  * restart service: 
 +    * net stop w32time && net start w32time
 +  * Verify that UDP Port 123 is open
 +
 +Notes: 
 +  * [[http://social.technet.microsoft.com/wiki/contents/articles/8863.time-service-configuration-on-dc-with-pdc-emulator-fsmo-role.aspx#Configure_External_Time_service_on_DC_holding_PDC_emulator_role|Technet source]]
 +  * Some settings were not saved from the command line
 +  * The priod was not saved correctly, even if the refistry, the resulting value was 512s.
 +  * 
howto/windowshowto.txt · Last modified: 2020/02/11 02:59 by admin
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0