Hi,
in newer Versios of Windows the generation of the DOS Style 8.3 names is only enabled for Drive C: for all other volumes it is disabled by default.
Continue reading Windows: Enable generation of 8.3 Names
Hi,
in newer Versios of Windows the generation of the DOS Style 8.3 names is only enabled for Drive C: for all other volumes it is disabled by default.
Continue reading Windows: Enable generation of 8.3 Names
Hi,
its not recommended, but Windows can act as a IP Router.
To enable routing set
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\IPEnableRouter to 1:
c:\>reg add HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters /v IPEnableRouter /D 1 /f
change the startup type of the service “Routing and Remote Access” to auto
sc config RemoteAccess start= auto
and start the service
sc start RemoteAccess
Thats it
Michael
Hi,
in some cases it may be necessary to log the http traffic of your browser. For example
Mozilla Firefox has the ability to do that. This behaviour is controled by 2 environtment varibales
Continue reading Firefox: Enable logging
Hi,
the default setting in Windows Vista, 7 or 8 is to assign a drive letter when you plugin a removable device. But sometimes you want to prevent Windows from doing that, for example security reasons.
You can control this behaviour with the mountvol command. The following command line disable the automatical assignment.
mountvol /N
to enable the auto assignment again execute
mountvol /E
Michael
Hi,
short post as reminder how to enable Server Side Includes on a virtual directory.
mod_include
must be enabled. MimeType for text/html must associated with .shtml file extension. Sample config for SSI looks like these:
<Directory "D:/user/www/virtualdirectory/"> Options Indexes FollowSymLinks MultiViews ExecCGI Includes AllowOverride All Order allow ,deny Allow from all Require all granted AddType text/html .shtml AddOutputFilter INCLUDES .shtml </Directory>
See you Michael