Jump to content

HØLLØW

Member
  • Posts

    137
  • Joined

  • Donations

    0.00 USD 
  • Country

    Germany

Everything posted by HØLLØW

  1. I've got another little question: Is it possible to change upper-case letters to lower-case letters via batch? Thank you
  2. Hey guys, I need your help. I have to create a batch-file that saves the first and the last character of the %computername% in a variable. I hope anyone can help. Thanks
  3. Hi, I'm not a fan of 3rd-party tools, but to integrate a controller-driver without getting a BSOD, use nLite. It worked very fine for me on many different storage-drivers etc.
  4. Hi guys, I'm searching for a Windows-Command to install the driver for a device. I have just the inf-files of the driver and want to install it like the manually in the device-manager. So is there a command to force Windows searching for a driver in a specified folder? I'm not searching for a solution like in the "WINNT.SIF" Thanks
  5. Hi, which RAID-Controller do you use (model)? Are you installing the 32bit or 64bit Version of W2K3?
  6. Hi, it's very confusing what you wrote in your post! You have a RAID0 and using Windows 7. Now you will install Windows Server 2003?
  7. Hi there, you can set the autologin (as you said) ant then run a script like this one here: NET LOCALGROUP %YOURGROUPNAME% /ADD %YOURUSERNAME% NET LOCALGROUP %YOURGROUPNAME% /ADD %YOURUSERNAME% Just test it a bit and customize it to your needs.
  8. Hi guys, is there an option in the "security.inf" file to set the following policies: - Computerconfiguration -> Administrative Templates -> Windows-Components -> Terminal Services -> "Deny logoff an administrative account" - Computerconfiguration -> Administrative Templates -> Windows-Components -> Terminal Services -> Sessions -> "Timelimit for disconnected Sessions"
  9. Iceman is right, the password setting is part of the local security policy and not part of the "Administrative Templates" Here is the default policy, I was able to edit the file and import it via secedit.exe C:\WINDOWS\security\templates\Setup Security.inf Make a copy of Setup Security.inf, rename the copy secedited.inf, and change this setting from this. to this Edit this command to suit your file names/paths. Should be able to schedule this via RunOnceEx in your WINNT.SIF Above script expects the file to be here XP_ROOT\$OEM$\$1\secedited.inf.The secedited.db file did not exist until after I ran this script, so don't ask where to find it, the script is creating it. If that doesn't work, re-run it without the /QUIET and report back any error. That sounds very good, I'll also try it when I'm on my testing-environment. Thank you very much.
  10. Hi, I'm also searching for a solution to activate local group-policies with a batch- / cmd-file. I found a way to set the policies in the windows-registry, but when I'm using these reg-keys, the policy ist sill disabled: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services] "fDisableForcibleLogoff"=dword:00000001 "MaxDisconnectionTime"=dword:000493e0
  11. Hi LisaTech, I also prefer to not use 3rd party tools. I'm installing the WMP11 in the "SVCPACK.INF" fil in the I386 folder on my XP-CD: "WMP11.exe /Q:A /R:N /c:""SETUP_WM.EXE /Q /R:N /NoPID /DisallowSystemRestore /P: #e""" This works fine for me without any errors.
  12. Hi, I think there is no sequence and it should work fine in any order.
  13. How have you created your ISO-file? With nLite?
  14. Hi, this should work: [Data] AutoPartition=0 MsDosInitiated=0 UnattendedInstall=Yes [Unattended] Repartition=No UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes UnattendSwitch=yes WaitForReboot=No
  15. Hi, are you using the "RunOnceEx.cmd" file to install applications etc.? If so, you can run your reg-file at this time of the installation.
  16. Hi Viper999, I don't know why it it hangs but here are some lines you should modify: RunOnceEx.cmd @echo off cwnd /HIDE @ IF EXIST D:\CD.txt set CDROM=D: IF EXIST E:\CD.txt set CDROM=E: IF EXIST F:\CD.txt set CDROM=F: IF EXIST G:\CD.txt set CDROM=G: IF EXIST H:\CD.txt set CDROM=H: IF EXIST I:\CD.txt set CDROM=I: IF EXIST J:\CD.txt set CDROM=J: Change it to: CMDOW @ /HID @ECHO OFF FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\CD.txt SET CDROM=%%i: You change the resolution the following way: REG ADD %KEY%\001 /VE /D "Changing Resolution..." /f REG ADD %KEY%\001 /V 1 /D "%CDROM%\$OEM$\$$\system32\1365VidChng.exe 1280x1024x8@60 -q" /f Why don't you use the "WINNT.SIF" file? [Display] Xresolution=1280 YResolution=1024 Vrefresh=60 AutoConfirm=1 What does this line in your "cmdlines.txt" file mean? "ROE.exe 937"
  17. I don't know if this works on Windows 7, but you can use the following command in a .cmd-file to get access to the folder: ATTRIB -R "%YOUR FOLDER%"
  18. How do you install "WMP11"? I'm installing the "WMP11" with the "SVCPACK.INF" and it's working fine: "WMP11.exe /Q:A /R:N /c:""SETUP_WM.EXE /Q /R:N /NoPID /DisallowSystemRestore /P: #e"""
  19. Try doing it the following way with a .reg-file to remove the autostart entry: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "nod32kui"=- It could be also in "HKEY_CURRENT_USER", just search the registry for the right key. I'm not sure if this removes the program from starting or just deletes the entry from "msconfig".
  20. Yeah, that can be also a problem by setting up the theme.
  21. To get the autologin working, you must set the following parameter in your "WINNT.SIF" file: AutoLogonCount="1" You must set a number of how many autologins you'd like to perform.
  22. I'm sorry that it is in german, but you can see the switches of the .NET Framework which can be used.
  23. Use this code and it works: REG ADD %KEY%\001 /V 1 /D "regsvr32 /s file.dll" /f I must say, that my .dll file is in the system32 folder, but you can try to register it from your location of the .dll.
  24. OK, I'm sorry that I forgot to say there IS A DIFFERENCE between the "svcpack.inf" and the "RunOnceEx.cmd". Thx to Martin
×
×
  • Create New...