author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sun, 28 Feb 2010 12:47:04 +0200 | |
changeset 332 | 80247baf4f55 |
parent 308 | bb7f69ae849a |
child 315 | dd4cb03b6b46 |
child 318 | 5a839a273056 |
permissions | -rw-r--r-- |
33 | 1 |
-*- outline -*- |
2 |
||
178 | 3 |
* XP. |
4 |
||
290
8bab7e733eb0
Check system files integrity.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
178
diff
changeset
|
5 |
** Check system files integrity. |
178 | 6 |
|
7 |
cmd> sfc /Scannow |
|
8 |
||
290
8bab7e733eb0
Check system files integrity.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
178
diff
changeset
|
9 |
To complete repair you may need original installation CD (you can mount it |
8bab7e733eb0
Check system files integrity.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
178
diff
changeset
|
10 |
from .iso image for example with DemonTools). |
8bab7e733eb0
Check system files integrity.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
178
diff
changeset
|
11 |
|
8bab7e733eb0
Check system files integrity.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
178
diff
changeset
|
12 |
Works for Windows 2000, Windows XP, Windows 2003. |
178 | 13 |
|
14 |
See |
|
15 |
||
16 |
http://support.microsoft.com/kb/222471/ |
|
17 |
http://support.microsoft.com/kb/310747/ru |
|
18 |
||
291 | 19 |
** Repair boot. |
20 |
||
21 |
If you only damage boot sector of master or system partition boot from Windows |
|
22 |
XP installation CD, enter to recovery console and run: |
|
23 |
||
24 |
cmd> fixboot |
|
25 |
cmd> fixmbr |
|
26 |
||
27 |
See |
|
28 |
||
29 |
http://support.microsoft.com/kb/307654/ru |
|
30 |
||
292
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
31 |
** Automatically connect to shared resource. |
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
32 |
|
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
33 |
Add to autorun such .bat file: |
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
34 |
|
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
35 |
net use x: \\server\share /user:username password |
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
36 |
|
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
37 |
See |
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
38 |
|
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
39 |
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/net_use.mspx |
45eb835dde51
Automatically connect to shared resource.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
291
diff
changeset
|
40 |
|
178 | 41 |
* Vista |
42 |
||
43 |
** Samba. |
|
33 | 44 |
|
45 |
By default, you cannot authenticate and share files to and from Mac OS X or |
|
46 |
Linux Samba due to a well known authentication method turned off by default. |
|
47 |
To enable this, |
|
48 |
||
178 | 49 |
*** Only for Windows Vista Ultimate/Business/Enterprise Editions. |
33 | 50 |
|
178 | 51 |
Goto Start->Run and open gpedit.msc or secpol.msc |
33 | 52 |
|
53 |
Select Continue on the User Account Control prompt. This will launch the Group |
|
54 |
Policy Object Editor for the Local Computer Policy. |
|
55 |
||
56 |
In the Group Policy Object Editor, expand: |
|
57 |
||
58 |
-> Computer Configuration |
|
59 |
-> Windows Settings |
|
60 |
-> Security Settings |
|
61 |
-> Local Policies |
|
62 |
-> Security Options |
|
63 |
||
178 | 64 |
Open the "Network security: LAN Manager authentication level" policy and |
34 | 65 |
change the Security Setting to: |
33 | 66 |
|
67 |
Send LM & NTLM - use NTLMv2 session security if negotiated |
|
68 |
||
178 | 69 |
*** Windows Vista Home Edition. |
33 | 70 |
|
71 |
Since Windows Vista Home Edition does not feature the Group Policy Editor, you |
|
72 |
may do the following to enable this feature: |
|
73 |
||
178 | 74 |
Goto Start->Run-> and type regedit. |
33 | 75 |
|
76 |
Select Continue on the User Account Control prompt. |
|
77 |
||
78 |
Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa |
|
79 |
||
178 | 80 |
Create the following DWORD value (if it doesn't exist): LmCompatibilityLevel |
33 | 81 |
|
82 |
And set its value to: 1 |
|
307 | 83 |
|
84 |
* Map dir to disk. |
|
85 |
||
308 | 86 |
To create: |
87 |
||
88 |
cmd> subst [to-disk: [from-disk:]path] |
|
89 |
||
90 |
To remove: |
|
91 |
||
92 |
cmd> subst disk: /d |