Content Type
Profiles
Forums
Events
Everything posted by MHz
-
Sysprep - Tried Everything - HELP!
MHz replied to esanford's topic in Unattended Windows 2000/XP/2003
HDD controllers can be an issue. Apparently, resetting the drivers to generic drivers for these, before you seal the image, overcomes the issue with them. -
Limited Account perhaps? That is my best guess. You have not supplied any OS information or other information, to raise a solution.
-
Thanks totoymola, I may have a new version, in a few days time, with helpfile improvements on using the editor. Maybe the copy to clipboard request. etc etc.
-
The registry is not merciful for lazy people. Best to fill the spaces with underscores or something.
-
@bacd I consider it possible to do names, full path and the 8.3 equivalents. May have something soon. Also, have a look at Pathinformation, in the editor. @redfive19 A very nice comment. Thankyou.
-
Nice display of switches.
-
Updated to version 1.3. Please see 1st post for information and download link.
-
I am unsure exactly, of the request? A good editor can help with clipping to suit, with search and replace, regular expressions etc. I have not used xplode...
-
If you unregister pdfshell.dll. This will disable the ActiveX in the browser. It is in "%ProgramFiles%\Adobe\Acrobat 7.0\ActiveX\".
-
Updated to version 1.2. Please see 1st post for information and download link.
-
I have loaded all your tweaks. Unlocker, font shell thing, etc. Seem fine. But... Editing of text files is being lost from context menu when registering ContextMenuExt.dll (copy to\move to) and CMExt.dll (CMenu), at the same time. The edit does exist when one or the other is registered. So a choice may need to be made. CMenu can do what the other dll can do, it has copy to, move to, plus more. But you have ContextMenuExt.dll bound into a pack, which does little? You pick which one. I believe this is the root cause, of the problem. A warning will be inserted on the 1st post, about this conflict of DLLs.
-
Tested with Unlocker Copy To/Move To Context Menu Shell Extension Font properties extension, version 2.1 (do you need this? unregister it otherwise, else excess baggage for the shell) All test fine. Unless they were altered in the ryanvm pack? Generally unstable context menu handling, would be a shell problem, whether extention or whatever. But the right click to edit, print or open text files, that could be more file association related. You do have Microsoft NotePad.exe still? Does the left click on text files work fine?
-
You should be fine running it on XP Pro English. I have uploaded a new version. This uses the editor from the dll author. This editor will apply the initial registry entries, rather then CMenu. Perhaps safer? And as a bonus, makes the context menu, user configurable. You should really test programs in Virtual PC or VMWare. Your OS will last longer. I will always try to ensure that any programs that I release, are safe for use. I apologize for any inconvenience.
-
FileCopy("D:\Documents and Settings\Admin\Desktop\Vypress\VyChat.exe", @ProgramFilesDir & "\Vypress Chat\", 1) [ ] those brackets, in the examples, display optional parameters. You do not insert those brackets into the line itself. DOS Variables, do not expand within strings, unless you set the Opt() setting for it. I would recommend, using AutoIt macros for this. I used Scite4AutoIt3 first, so should be no typo this time?
-
That is not good at all. Run this in your run box. It will unregister the context menu dll. Regsvr32 /u "%ProgramFiles%\CMenu\CMExt.dll"You may have a shell extention, that may conflict with it? Restarting explorer may also help, perhaps try restarting explorer first. Are you running XP?
-
CMenu v2.6 Released 23 August, 2006 CMenu is a handy, context menu extension. Adds a branch to your context menu called More Options. Uses PEiD, which is able to recognize installer types, if available in it's the database. Identify Installer uses this information, and is able to popup a window to show parameters associated with that installer. Identify Installer can unpack, admin, record, silent installations, if available. And also create a template AutoIt Script, to suit. Includes CMenu Editor. This allows further customizing. Files can Execute With Parameters, optional working directory, and allowing for different window states. Create a Directory List. Preset options are available, as well as a custom options. Create an AutoIt Archive Script, that can be included into your main scripts. This allows AutoIt to act like an archiver. Includes PEiD as a separate item also, which allows the user to enhanced, portable executable identification. Filenames and paths can be easily sent to the windows clipboard, by using Path To ClipBoard. Allows for the user to download and add Resource Hacker or Stud PE. These will be detected, if placed in the correct folder, and will be added to the context menu. MyUninstaller is included in CMenu. Force Delete is included in CMenu. Use this only, as required. When deleting multiple files, do not do anything, until the operation is complete. A msgbox will popup and will allow, not to proceed. Use at own risk. AutoItMacroGenerator is included to handle recording of AutoIt install scripts. Reg2Au3 quickly converts Regedit4 type registry files to AutoIt3 syntax. Ini2Au3 quickly converts Ini files into AutoIt syntax. Constants Generator retrieves the constants declarations that your AutoIt script only needs. 7-Zip2Sfx for easily converting 7z archives to self extracting archives. Preview of CMenu: Identify Installer supercedes USSF for installer identification. A little project, that I have been working on. Try it out, and see if it is useful for you. Any feedback on any bugs or compliments would be appreciated. Enjoy B) >>>>> CMenu Homepage <<<<< >>>>> CMenu Download <<<<< Edit: Updated the download link. Added link to CMenu homepage for more detailed information Also consider SendToA3X which is like CMenu except it uses the builtin SendTo rather then a 3rd party shell extension.
-
%AppData% is where programs store your settings etc. Why would you try to delete something, that is as important as this?
-
Yep, you are right. I made a typo.
-
Sure can run MSI Run(@SystenDir & '\msiexec /i "' & @ScriptDir & '\program.msi"')
-
Try this script. It is preset for english, but can be changed for other languages. Some comments have been added for basic understanding. It can make your installer, up to 1Mb smaller. No types or components, as you set the install conditions. Spybot_1.4_install_script.iss
-
Inverted comma's?? <{POST_SNAPBACK}> /D="C:\Program Files\Directory" Do not use them.
-
This may sound strange. But I have run a couple of tests. It seems that if you use inverted comma's, with the /D= switch, it will fail. But if you have no inverted comma's, even with spaces, it works.
-
Spaces are not the issue. Type Start /? at the prompt to see the syntax. del is an internal command, so it will be the same as calling cmd with a /k switch. I am not sure you want this? Using Delete directly Del /f /q "c:\documents and settings\user\desktop\*" Or with Start. (same as cmd /k, so window stays open) Start "Title" Del /q /f "c:\documents and settings\user\desktop\*"
-
Try different Blank DVD's. Odds are, the one's you have maybe poor quality. Drag'n'Drop a shortcut to the quicklaunch bar.
-
This works for me Path="C:\Program Files\Microsoft Office\Office10" Start /Wait WINWORD.EXE