Jump to content

EelCapone

Member
  • Posts

    18
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by EelCapone

  1. Hi there, I've got a problem creating a multiboot DVD. What I want is to make a multiboot DVD which can boot the XP setup and the 98 setup, but when I try to boot the ISO in VMware it boots straight to the XP bootloader. This is the command line I use: mkisofs.exe -eltorito-boot XPBOOT.IMG -no-emul-boot -boot-load-seg 0x07C0 -boot-load-size 4 -eltorito-alt-boot -eltorito-boot 98BOOT.IMG -omit-version-number -joliet -rational-rock -volid "WinXP" -sysid "Win32" -output /xpcd.iso d:\install Does anyone know what's going wrong?
  2. Does anyone know a tool or method for changing the properties of an user account within Windows 2000 or 2003 server from the command line? I'm asking this because I'd like to automate this task. I'd like to change the following properties from the command line: Connect client drives at logon: disable Connect client printers at logon: disable Default to main client printer: disable Enable remote control: disable Remote Access Permissions: deny access
  3. Yes, I've seen the service pack post. The problem is that it's for the English version of Windows 98 only, and I'm using a dutch version
  4. Hi there, I want to secure my apache so that it will only serve certain files with certain file extentions. Now I've come up with this: # =================================================# Access control# =================================================AccessFileName .htaccess<Directory "C:/"> # Don't allow access to C: drive Options None AllowOverride None Order deny,allow Deny from all</Directory><Directory "D:/"> # Don't allow access to D: drive Options None AllowOverride None Order deny,allow Deny from all</Directory><Directory "D:/www"> # Allow access to the root of the hosting folder Options None AllowOverride None Order allow,deny Allow from all <FilesMatch "."> # But only to files with the specified extentions Order allow,deny Deny from all </FilesMatch> <FilesMatch "\.(html|gif|jpg|php|css|js|zip)$"> Order allow,deny Allow from all </FilesMatch></Directory>Now this works just fine, except that it returns a '403 Forbidden' error and I want it to return a '404 Page not found' error. Anyone know how I can do this?
  5. Hi, Anyone know how I can do an unattended installation of Dial-up networking 1.4 for Windows 98 SE? The /Q:A switch works just fine, but after the installation it keeps asking for a reboot, despite of the /R:N switch I use. This is the command line I use: start /wait "WU\Dial Up Networking 1.4\dun14-SE.exe" /Q:A /R:N
×
×
  • Create New...