Automated merge with file:///e:\srv\hg\admin-doc
authorOleksandr Gavenko <gavenkoa@gmail.com>
Sun, 07 Feb 2010 13:57:36 +0200
changeset 300 a39e5f8bd767
parent 298 c170134ac5a7 (diff)
parent 299 f3020893afb6 (current diff)
child 301 072d4cc9d726
Automated merge with file:///e:\srv\hg\admin-doc
--- a/devel-windows.rst	Sun Feb 07 13:57:25 2010 +0200
+++ b/devel-windows.rst	Sun Feb 07 13:57:36 2010 +0200
@@ -18,3 +18,35 @@
 * Sysinternals.
 
 TODO
+
+* Running at startup.
+
+  HKCU\Software\Microsoft\Windows\CurrentVersion\Run
+                Launches a program automatically when a particular user logs
+                in. This key is used when you always want to launch a program
+                when a particular user is using a system.
+  HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce
+                Launches a program the next time the user logs in and removes
+                its value entry from the registry. This key is typically used
+                by installation programs.
+  HKLM\Software\Microsoft\Windows\CurrentVersion\Run
+                Launches a program automatically at system startup. This key
+                is used when you always want to launch a program on a
+                particular system.
+  HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce
+                Launches a program the next time the system starts and removes
+                its value entry from the registry. This key is typically used
+                by installation programs.
+  HKLM\Software\Microsoft\Windows\CurrentVersion\RunServices
+                Launches a service (a standard NT service or a background
+                process) automatically at startup. An example of a service is
+                a Web server such as Microsoft Internet Information Server.
+  HKLM\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce
+                Launches a service (a standard NT service or a background
+                process) the next time the system is started, then removes its
+                value entry from the registry.
+
+Values to registry on Windows XP can be added by:
+
+  cmd> reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Run" /v run.bat /t REG_SZ /d "path\to\run.bat"
+  cmd> reg query HKCU\Software\Microsoft\Windows\CurrentVersion\Run   <-- see what done
--- a/driver-win.rst	Sun Feb 07 13:57:25 2010 +0200
+++ b/driver-win.rst	Sun Feb 07 13:57:36 2010 +0200
@@ -29,12 +29,6 @@
 
   http://en.wikipedia.org/wiki/Windows_Driver_Foundation
 
-* Filename extension.
-
- * VxD
-    .386 under Windows 3.x
-    .vxd under Windows 95
-
 * Tools.
 
 ** Msinfo32.exe
@@ -92,6 +86,11 @@
 
 ** Windows 98 SE/ME.
 
+ * .386
+   VxD driver under Windows 3.x
+ * .vxd
+   VxD driver under Windows 95
+
 ** Windows NT (2000/XP/2003).
 
  * .inf
--- a/nntp.rst	Sun Feb 07 13:57:25 2010 +0200
+++ b/nntp.rst	Sun Feb 07 13:57:36 2010 +0200
@@ -39,3 +39,19 @@
   $ su
 ...
   # echo 1 > /proc/sys/net/ipv6/bindv6only
+
+* Public NNTP server.
+
+** Gmane.
+
+  news:news.gmane.org
+                news list address
+  http://rss.gmane.org/gmane.<group>.<name>
+                rss feed for list
+  http://news.gmane.org/gmane.<group>.<name>
+                nice web interface for reading list
+  http://blog.gmane.org/gmane.<group>.<name>
+                make list blog like
+  http://search.gmane.org
+                search through mailing list
+