Jump to content

Rosebud6

Member
  • Posts

    21
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by Rosebud6

  1. Didnt notice it, I must have changed something in my config when i upgraded to latest version of Nlite. Thanks. PS I know, i was having a one of those days where i forgot to check the obvious.
  2. Here is my winnt.sif: For some reason it does not skip the welcome screen. I know I've seen the answer somewhere but i cant find it again. Any Ideas? ; Generated by nLite 1.0 beta 6 [Data] Autopartition = 0 MsDosInitiated = 0 UnattendedInstall = Yes [unattended] UnattendMode = FullUnattended UnattendSwitch = No OemPreinstall = Yes OemSkipEula = Yes FileSystem = * WaitForReboot = No NoWaitAfterTextMode = 1 NoWaitAfterGUIMode = 1 TargetPath = WINDOWS DriverSigningPolicy = Ignore NonDriverSigningPolicy = Ignore Hibernation = No [GuiUnattended] AdminPassword = * TimeZone = 035 OEMSkipRegional = 1 OemSkipWelcome = 1 [Components] [userData] ProductKey = "xxxxx-xxxxx-xxxxx-xxxxx-xxxxx" ComputerName = CHANGEME FullName = * [RegionalSettings] Language = 0409 [Networking] InstallDefaultComponents = Yes [identification] JoinWorkgroup = workgroup Another quick question, with using Nlite to create my ISO, it defaults to the old style installation without the background picture, do I have to go with something other than "UnattendMode = FullUnattended" to get the "normal" installation screen back?
  3. Sounds like your profile is corrupt. You need to create a new user account before you can save programs again.
  4. Using WPI to install WinRAR. using the /s switch stops the prompts but the startmenu shortcut window pops open. Trying to figure out a way to prevent or stop it from opening. Any Ideas? Can Taskkill.exe close a window?
  5. I know im a newbie but it must not be working correctly, cuz it does not add the key in the registry, and it does not disable the .exe security warning. The only time i can get the security warning to not come up is to run the .reg file before starting WPI. Unless im missing something.
  6. Ok got a work around. Create run.bat add: REM runs the registry entry regedit /S %systemdrive%\install\CWS_REMOVAL\DIS_SECWARN.reg REM Start WPI and wait for its end start /wait %windir%\system32\mshta.exe "%systemdrive%\install\WPI Master\wpi.hta" It adds the registy entry then starts WPI. and then installs the "Problem Software" with no security warning. Then (to reverse the changes) i added "Enable Security Warning" install in WPI with: Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] Works like a charm now.
  7. I run a little .REG to disable the Security warning on a couple of programs. I am using the .REG in the "Registry before" line but it does not seem to take effect fast enough before the Application starts to install. IS there a way to make the install wait until the Registry setting is complete? If i manually run it before i install the app it works. Like adding a wait 10 seconds or something after the .reg runs. Registry before: regedit /S %systemdrive%\install\CWS_REMOVAL\DIS_SECWARN.reg Command 1:%systemdrive%\install\CWS_REMOVAL\aawsepersonal.exe /S Registry after:regedit /S %systemdrive%\install\CWS_REMOVAL\ENA_SECWARN.reg Code for DIS_SECWARN.reg (disables security warning for .exe files) Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "LowRiskFileTypes"=".exe;" Code for ENA_SECWARN.reg:(enables security warning for .exe files) Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] BTW. this forum rocks.
  8. I was searching around and found some tidbits from multiple users. Props to Lucius Snow for my starting point. I use WPI for my installs and was having trouble getting the security warning to stop coming up on my unattended install. This is how i fixed it: Run This one before you install the software that gives you the "Security warning" (IE Spybot, Adaware) Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] "LowRiskFileTypes"=".exe;.bat;.com;.cmd;.reg;.msi;.htm;.html;.gif;.bmp;.jpg;.avi;.mpg;.mpeg;.mov;.mp3;.m3u;.wav;" (Can modify the file extension to only do the type of file you want to install In the "LowRiskFileTypes" part of the key. IE. if they are just .exe's that are giving the prompt then just use "LowRiskFileTypes"=".exe;") Run after the problem software is installed to delete the entry. Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations] Hope this helps everyone that was running into the same problems i was. I tested this on a fresh VMWare install, up-to-date patches/SP. UPDATE: Cant seem to get this to work if i run it from inside of WPI. So it has to be run first then install programs as usual from WPI. If i run it from WPI, It makes the registry entries but wont allow the programs to install unless i restart the WPI Install. Anyone have any ideas how to make it work from with in WPI?
  9. I've done every thing in this guide for the retail silent install. Silent install goes great but it still asks me for my key. I have attached the files that are edited within the setup procedure. Thanks for any help in advance. UPDATE: Problem solved turns out the code above for the MCE_SYM.reg has REGEDIT4 and i needed Windows Registry Editor Version 5.00 MCE_SYM.reg Custom.ini Setup.ini
  10. Im a PC Tech and I just wanted a simple program i could send an end user and have it clean the temp files for them without any complex installs or configurations. One click and its done. Simple minds require simple instructions, lol. Plus cleanmgr takes alot longer.
  11. I new it was something simple i was missing. A simple " " did the job thanks. If anyone has any ideas on how to delete from All the users and not just current user would be great. Thanks again InTheWayBoy.
  12. Im trying to get make a batch file that will delete the temp files and the temp internet files of the CURRENT USER and/ or all users but cant seem to get it to work. What i use now: del /Q /F /S /A c:\windows\prefetch\*.* del /Q /F /S /A C:\Docume~1\user\locals~1\temp\*.* del /Q /F /S /A C:\Docume~1\user\locals~1\Tempor~1\*.* "user" is the current user and only works for the user named "user" unless i manually change it. What i want: del /Q /F /S /A %UserProfile%\locals~1\temp\*.* del /Q /F /S /A %UserProfile%\locals~1\Tempor~1\*.* or del /Q /F /S /A %AllUserProfile%\locals~1\temp\*.* del /Q /F /S /A %AllUserProfile%\locals~1\Tempor~1\*.* When this is run, i get an error the system can not find the specified path. Is this error because it puts the full path? (IE.c:\Documents and settings\... instead of the truncated c:\docum~1\...) I guess what i need to know, is there a "universal" command to delete temp/tempinternt files from the current user or from all users? Like %UserProfile% or %AllUserProfile% to replace the user name in the path.
  13. Ive had this work before. Try wrapping it in Paper towel, put in ziplock baggie (unclosed to let moisture out) then pop it in freezer for about 3-4 hours. Take out of freezer and plug in to computer frozen. Some times when a HDD gets too hot it will fuse the heads to the disks. What this does, if the drive still powers up but wont spin, is makes the disks srink a little and beaks the heads free. Like i said, it worked for me before.
  14. Here it is. Thanks for your help. config.js
  15. That was just to get the program to give me the error again. I have it set up and working prior to adding that item. Even if i delete a program (still works fine after delete) and add another it gives me the error.
  16. //--------------------------------------------------------------------------------------------- // Reference ... prog[0] won't be used. It's just an example // look in program.js to see explanation of these properties //--------------------------------------------------------------------------------------------- // pn=0 // start value vor prog numbering // prog[pn]=['ProgramName'] // picf[pn]=['Picture File'] // picw[pn]=['Width'] // pich[pn]=['Height'] // desc[pn]=['Description'] // textl[pn]=['Text location'] // texti[pn]=['Text Indent'] // regb[pn]=['Registry Key Path'] // cmd1[pn]=['CommandLine 1'] // cmd2[pn]=['CommandLine 2'] // cmd3[pn]=['CommandLine 3'] // cmd4[pn]=['CommandLine 4'] // cmd5[pn]=['CommandLine 5'] // cmd6[pn]=['CommandLine 6'] // rega[pn]=['Registry Key Path'] // dflt[pn]=['no'] // forc[pn]=['false'] // cat[pn]=['Application Category'] // ordr[pn]=[0] // uid[pn]=['APP1'] // cond[pn]=['Javascript Conditional Statement'] // deps[pn]=[] // excl[pn]=[] // configs[pn]=['List of configs to be auto checked for comma seprated'] // pn++ //--------------------------------------------------------------------------------------------- // Your programs here ... //--------------------------------------------------------------------------------------------- pn=1; uid[pn]=['inc'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] pn++ prog[pn]=['123 Renamer'] uid[pn]=['123RENAMER'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['123 File Renamer help you rename files en masse with a number of possibilities.'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[5] cmd1[pn]=['%systemdrive%\\Install\\Tools\\123renamersetup2.2.exe /VERYSILENT /SP-'] configs[pn]=['Home'] cat[pn]=['Applications'] pn++ prog[pn]=['Adobe Acrobat Reader 7.0'] uid[pn]=['ADOBEACROBATREADERV70'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['Adobe® Reader® 7.0 — free software that lets you view, print, search, and share Adobe Portable Document Format (PDF) files more securely using a variety of platforms and devices.'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[15] cmd1[pn]=['%systemdrive%\\Install\\Tools\\AdbeRdr7.exe'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['Office'] pn++ prog[pn]=['Aquarium ScreenSaver'] uid[pn]=['AQUARIUMSCREENSAVER'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\screensavers\\SSAquarium2.0\\SereneScreen Marine Aquarium 2.exe'] cat[pn]=['PowerToys'] pn++ prog[pn]=['CWShredder'] uid[pn]=['CWSHREDDER'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\CWS_REMOVAL\\CWSInstall.exe'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['System'] pn++ prog[pn]=['EZ Cleaner'] uid[pn]=['EZCLEANER'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\CWS_REMOVAL\\EClea2-0.exe'] dflt[pn]=['yes'] configs[pn]=['yes'] pn++ prog[pn]=['Nero Burning ROM 6.6'] uid[pn]=['NEROBURNINGROM'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['Nero burning ROM is the best all-in-one CD-R application on the market. Period. It combines huge amounts of features in a compact and easy to use package. It handles disc duplicating and pre-mastering with ease, supported by a cover designer and even an audio file editor. The excellent GUI desing keeps all the functions handy and guarantees that simple tasks can be done quickly'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[240] cmd1[pn]=['%systemdrive%\\Install\\Tools\\NERO6.6\\nero6.exe /SN=************************** /WRITE_SN /SILENT /NO_UI /NOREBOOT /NOLICENSE /NOCANCEL'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['Applications'] pn++ prog[pn]=['Power DVD 6.0'] uid[pn]=['POWERDVD60'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\Tools\\POWERDVD6\\Setup.exe /S'] pn++ prog[pn]=['SafeXP'] uid[pn]=['SAFEXP'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['Safe XP allows users to quickly tweak various security and privacy related settings in XP. The options include Media Player settings, Services settings (error reporting, time synch, remote registry etc.), as well as options to remove items from the Start menu, network security settings and more. Safe XP improves your system performance and makes Windows to run faster, more secure and reliable! It is suitable for beginners and experts!'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[300] cmd1[pn]=['%systemdrive%\\install\\Tools\\safexp.exe /VERYSILENT'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['PowerToys'] pn++ prog[pn]=['Spybot 1.4'] uid[pn]=['SPYBOT14'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\CWS_REMOVAL\\spybotsd14.exe /VERYSILENT'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['System'] pn++ prog[pn]=['Startup Control Panel'] uid[pn]=['STARTUPCONTROLPANEL'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['Startup Control Panel is a nifty control panel applet that allows you to easily configure which programs run when your computer starts. Can be found inside the Windows Control Panel.'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[310] cmd1[pn]=['%systemdrive%\\Install\\Tools\\SUPCON\\Startup.exe'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['PowerToys'] pn++ prog[pn]=['WinRAR 3'] uid[pn]=['WINRAR'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['WinRAR is a 32-bit Windows version of RAR Archiver, an archiver and archive manager. RAR files can usually compress content by 8 percent to 15 percent more than ZIP files. WinRAR\'s main features include strong general and multimedia compression, the ability to process non-RAR archive formats, ZIP compression and decompression, support for long filenames, programmable self-extracting archives (SFX), repair of damaged archives, authenticity verification, embedded file comments, and encryption. Unicode is supported in archive filenames, allowing non-English filenames to be handled painlessly. You can manipulate the parameters of many archives at once and view a volume sequence as a single archive. WinRAR can convert other archive formats to RAR. It supports the Find command, allowing you to search for specified text and files in archives.'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[390] cmd1[pn]=['%systemdrive%\\Install\\Tools\\winrar3\\winrar3.exe /S'] cmd2[pn]=['%systemdrive%\\Install\\Tools\\winrar3\\patch\\Patcher.exe'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['System'] pn++ prog[pn]=['Windows Media Player 10'] uid[pn]=['WINDOWSMEDIAPLAYER10'] picw[pn]=['128'] pich[pn]=['128'] desc[pn]=['As an evolutionary product, WMP 10 is immediately recognizable as a member of Microsoft\'s Windows Media Player product family, and yet it also offers a fresh face to what has always been an overly complicated product. WMP 10, if you can believe it, actually offers a lot more functionality than previous versions of the player, but it presents much of that functionality in far simpler ways. For example, in addition to aggregating music and video files like previous versions, WMP 10 can aggregate pictures, Recorded TV shows, and other media, though that ability might be limited by the kind of PC you have, and which portable devices you interact with.'] textl[pn]=['Bottom'] texti[pn]=['1'] ordr[pn]=[395] cmd1[pn]=['%CDROM%\\Install\\MP10Setup.exe'] cmd2[pn]=['regedit /s %CDROM%\\Install\\wmp10.reg'] dflt[pn]=['yes'] configs[pn]=['yes'] cat[pn]=['Utilities'] pn++ prog[pn]=['XP Antispy'] uid[pn]=['XPANTISPY'] picw[pn]=['128'] pich[pn]=['128'] textl[pn]=['Bottom'] texti[pn]=['1'] cmd1[pn]=['%systemdrive%\\install\\CWS_REMOVAL\\xp-antispy.exe /S'] pn++ //--------------------------------------------------------------------------------------------- // End of program definitions ... //---------------------------------------------------------------------------------------------
  17. Hi guys, love this program. I used an old version and had it work just fine. Just downloaded 4.3.5 and am getting an error. Ive added a few of my own programs into the config, but im at a point where if i add another one, i get a java script error ( see attached). Any ideas would be helpful Thanks in advance ISSUE RESOLVED: Well, thanks for the help but i started from scratch and it seels to have fixed my issue.
×
×
  • Create New...