Jump to content

lloydspnm

Member
  • Posts

    28
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by lloydspnm

  1. Does anyone have the silent install switches for Microsoft Visio Viewer and Microsoft Organisation Chart Editor (MSOC2.exe)?
  2. Is there a way to set user account passwords via script, but not have the password available in clear text for everyone to see. i.e a similar method to encrypting the admin password in WINNT.SIF
  3. Does anyone know where the information comes from when you run WINMSD. I'm tring to detect the system model so I can install the appropriate drivers as it's too complex to unpack them and add entries to PNP OEM path.
  4. I'm trying to install MSOC2.exe silently but cannot work out the syntax, does anyone have it?
  5. Is there a generic way in script to disable the USB ports and CDROM drive. I can disable the appropriate devices in the registry, but if the hardware changes then the tweaks don't work anymore. Can it be done at a higher level?
  6. CurrentControlSet is a pointer to the control set that was used to boot the PC (usually ControlSet001) so you only actually need to change CurrentControlSet. There may be up to four control sets.
  7. The BITS update didn't make a difference. I found something on google refering to the error number being an authentication error against ISA server, which we are using, so I'll have a look at that next.
  8. Error page says: We're Sorry error no 0x80244021 Windows update has encountered an error and cannot display the requested page.
  9. I have an XP SP1 scripted build that was working perfectly well with the old windowsupdate.microsoft.com. When this was updated to the new site, I get the download and scan OK but when I try either the Express install or the Custom install I get an error page. (I'm also having problems with my SUS server, see my other thread) Has anyone else got problems with the new update website. It only seems to be with the scripted build. A manual build works perfectly OK.
  10. Yes Changing this to No and rebuilding gets SUS working but windowsupdate.microsoft.com still fails and I obviously don't get the proxy settings and homepage added in.
  11. I use VB to update a marker file in the root of the C:\ drive. An example file is called Build-xp.01.01.000 and the 000 will go to 001 ' Rename the build marker file OPTION EXPLICIT Dim fso Dim Folder, OldFile,NewFile, FileColl Dim MajorMinor Dim BuildNumber Dim FolderPath Set fso = CreateObject("Scripting.FileSystemObject") wscript.echo "Finding Marker file" FolderPath = "..\XP With SP1\$OEM$\$1" Set Folder = fso.GetFolder(FolderPath) Set FileColl = Folder.Files For Each OldFile in FileColl If Left(OldFile.name,8)="Build-XP" Then WScript.echo "Old Marker " & OldFile.Name MajorMinor = Left(OldFile.name,14) BuildNumber = Right(OldFile.Name,3) BuildNumber = BuildNumber + 1 NewFile = MajorMinor & "." & Right("000" & BuildNumber,3) WScript.Echo "Renaming to " & NewFile fso.MoveFile FolderPath & "\" & OldFile.Name, FolderPath & "\" & NewFile Exit For End If Next Set fso=Nothing wscript.echo "Finished" This gets called as part of the ISO Creation command file using: ECHO Updating Build Number CSCRIPT RENAME.VBS ECHO Creating ISO...
  12. If I have the following lines in winnt.sif: [Proxy] Proxy_Enable=1 Use_Same_Proxy=1 HTTP_Proxy_Server=myproxy:80 Proxy_Override=<local> Then the PC cannot contact my SUS server. If I remove those lines and enter the same information by hand in IE Internet Options, Lan Settings it all works. What is different about doing it in winnt.sif besides the fact it is going into the default user profile?
  13. Thanks for that, I am using a Transform file so this solution is better.
  14. If I run it there, it will have been applied before Office 2003 is installed. Is this ok or will Office 2003 overwrite the values?
  15. The only problem with this is that it is based on CURRENT_USER. Is there a more global solution?
  16. I've managed to enable the Quick Launch bar using the registry keys people have provided. How can I now expand it so I can see all the icons I've copied in?
  17. I've got an unattended setup of Office 2003 running using the transform file and I now need to modify the default file locations of, for example, the templates directory in Word. Does anyone know how to do this for All Users?
  18. That didn't work, the 'official' way to do it is with CertMgr available from http://www.microsoft.com/downloads/details...&displaylang=en E.G certmgr /add /c /v my_root.cer /s /r localMachine root will add my_root.cer to the Trusted Root Certificates store
  19. I saw this but there was no indication it would work. I'll give it a go...
  20. I need a install a certificate into the Trusted Root Certificates in IE 6. Does anyone know how to do this via comand line or during the unattended setup?
  21. The key name is SCRNSAVE.EXE under HKEY_USERS\.Default\Control Panel\Desktop. If I just drop in the name of the SCR file it works, if I give it the actual path i.e. C:\Windows\foo.SCR it doesn't.
  22. Ignore my last post, I've just read your sig file! Why cann't I do it in dos though if I can use Explorer and just press delete.
  23. Yes, I've used the winnt.sif code but the actual Games folder appears for all users even though it is empty. What is nlite and where do I find it?
  24. I've put a screen saver in the $OEM$\$$ location and it got coped to C:\Windows OK. If also added the registry keys so it gets used by default. This all works but it now appears twice in the list of screen savers inside the GUI. I've searched the disk and there is only one copy. Both versions can be selected from the GUI and they both appear to work. Any ideas?
×
×
  • Create New...