Jump to content

RicaNeaga

Members
  • Posts

    845
  • Joined

  • Last visited

  • Days Won

    5

Reputation Activity

  1. Like
    RicaNeaga reacted to Jim Brisse in [Solved] .MSP-File as Silent-Installer   
    Create WinRAR SFX
     
    Compression: Store
    Place SFX script commands in tab commands:
     
    ----- START SFX SCRIPT ------
    ;The comment below contains SFX script commands
    Setup=msiexec /p <msp file name> .msp REINSTALL=ALL REINSTALLMODE=omus /qn
    TempMode
    Silent=1
    Overwrite=1
    ----- END SFX SCRIPT ------
     
    Why apply an .msp to Adobe?
     
    Read: http://www.mockbox.net/server-stuff/configmgr-sccm/302-install-adobe-reader-x-1001-using-sccm?hitcount=0
     
    Download Adobe Customization Wizard XI: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5515
  2. Like
    RicaNeaga reacted to ElmerBeFuddled in Sticky Keys Prompt in unattended install   
    After a couple of cups of coffee and whilst (she) was on a trip to the shop to get me some baccy, the step-daughters PC miraculously unlocked itself!
     
    The SD learnt a lesson there. Don't use the same password to lock your PC that you was using when you were 14! She now has that sort of 'look of terror' as to what I may, or may not (not!) seen on her PC. I, of course, are remaining silent, but giving plenty of knowing smiles and winks out! Well, you have to take the mickey, don't you!
     
    It was actually a Public Network I was trying to set in the autounattend file as opposed to a Home one. Although those registry key entries will come in very handy and a big Thanks for those!
  3. Like
    RicaNeaga got a reaction from ElmerBeFuddled in Sticky Keys Prompt in unattended install   
    Laughed alot about the step-daughter issues btw, what's the finale?
     
    Also, please post here your autounnatended.xml. I have that one with the network skipped just fine, don't know why that's happening to you.
     
     
    LE: Nevermind, I saw it in your second post. Here's how mine looks like:
    <?xml version="1.0" encoding="utf-8"?><unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> <UserLocale>ro-RO</UserLocale> <InputLocale>en-US</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DiskConfiguration> <WillShowUI>Always</WillShowUI> </DiskConfiguration> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 HOMEPREMIUM</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> <UserData> <AcceptEula>true</AcceptEula> <ProductKey> <Key>RHPQ2-RMFJH-74XYM-BH4JX-XM76F</Key> <WillShowUI>OnError</WillShowUI> </ProductKey> </UserData> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SkipAutoActivation>true</SkipAutoActivation> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ComputerName>Admin-PC</ComputerName> <ProductKey>RHPQ2-RMFJH-74XYM-BH4JX-XM76F</ProductKey> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserLocale>ro-RO</UserLocale> <InputLocale>en-US; ro-RO</InputLocale> <SystemLocale>en-US</SystemLocale> <UILanguage>en-US</UILanguage> </component> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <TimeZone>GTB Standard Time</TimeZone> <OOBE> <HideEULAPage>true</HideEULAPage> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> </OOBE> <AutoLogon> <Password> <Value></Value> </Password> <Enabled>true</Enabled> <LogonCount>2</LogonCount> <Username>Administrator</Username> </AutoLogon> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value></Value> <PlainText>true</PlainText> </Password> <DisplayName>Administrator</DisplayName> <Name>Administrator</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> </component> </settings></unattend>So, <NetworkLocation>Home</NetworkLocation> should do the trick and make the install process fully quiet.
     
     
    Also, if you don't want the network location wizard to ever pop up, use this tweak:
    Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Network\NetworkLocationWizard]"HideWizard"=dword:00000001[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\Network\NetworkLocationWizard]"HideWizard"=dword:00000001
  4. Like
    RicaNeaga reacted to ElmerBeFuddled in Sticky Keys Prompt in unattended install   
    Aah Haa! Issue is resolved!
    It appears to happen when dotNET 4.5 slim is being installed into the virtual machine. By the use of logging when it starts and ends I've discovered it takes anything from 10 to 15 minutes to fully install with mscorsvw.exe doing its thing. Its during this time I usually nip to the loo, do a brew, grab a sarnie, have a tab or two etc.. Today I thought I'd go and stand in the garden and catch some rays.
     
    It was then I spotted my 27 yr old step-daughter rapidly tapping the shift key!!! Oh how she laughed!!
     
    She's off out tonight. Wonder if she'll laugh tomorrow when she discovers I've changed her log in password that she thinks I don't know!!
     
    Now one thing I would like to know. If I set network in the autounattend file to Public as opposed to Home the install fails on any version of Win 7 I try out in VBox. Is there any way I can do this? If I try to skip choosing a network I get the window prompting me to set one when I finally get to the desktop. Any ideas?
  5. Like
    RicaNeaga reacted to Geej in Run With Parameters 2.1.6   
    Updated to v2.1.6
  6. Like
    RicaNeaga reacted to Geej in Everything Search Engine 1.3.3.658b   
    Sorry. link fix. Now 658b
  7. Like
    RicaNeaga got a reaction from noob in Tweaks [Merged]   
    I've edited the previous two posts, one with an important tweak, the other please delete - look at the previous page.
    Also, about the Do not allow Windows to turn off Network Adapters tweak KrX wrote about in the post above, I had it in a deleted post - not by me (???), and it's not working if added to an offline image because of the CurrentControlSet not beeing set for an offline image. However, it doesn't work also with ControlSet001 & ControlSet002.
    So it doesn't work in its original form...



    ... and also not in the modified for offline images mode (verified the location with registry hive mounter)...



    My suggestion is to delete this tweak from the post above and also never adding it to Win Toolkit, since it doesn't work 100% in any form for an offline image.
  8. Like
    RicaNeaga reacted to ricktendo in [Repak] Universal Extractor 1.9.16.202   
    I need to figure out the inno code to add the option to turn off auto updates
    Update:
    Added hability to disable automatic updating during setup and also added /noupdate switch
    For you RN, your options to not install additional languages, turn automatic updates off and install silently you would use

    <installer>.exe /COMPONENTS="!lang" /VERYSILENT /noupdateIf there are other default settings you want to turn off via cmdline let me know, I can show you how Edit: updated 1.7.1.70k
  9. Like
    RicaNeaga reacted to ricktendo in [Repak] Universal Extractor 1.9.16.202   
    Updated v1.7
  10. Like
    RicaNeaga reacted to bphlpt in Main - Basic - Update Catalog: Keep file modify dates on downloaded files   
    Sorry, RicaNeaga, but I respectfully disagree.  I understand your points, and agree that something stronger than just a date should be used to confirm file changes, but the date can be a very easy "first pass" check.  I also do not think that this change will take Lego much time to implement.  If I am wrong, then I will agree with your point about Lego having more important things to implement.
     
    Cheers and Regards
  11. Like
    RicaNeaga reacted to mooms in Everything Search Engine - v1.3.3.658b   
    UTF-8 encoding is not recognized by Windows


    I'm afraid you'll had to stick with Unicode or ANSI.
  12. Like
    RicaNeaga reacted to mooms in Everything Search Engine - v1.3.3.658b   
    Hi Geej,
    Tested live install on win7 X64 French and it's working fine. Uninstall too.
    Just checked the inf and I found you have left French strings in Deutsch section (line 334 to 339).
    This what I got with Google trad, If someone speaking German could check if it's correct:
     

    BTitleInstall=inf installerptmsg=Sind Sie sicher, das Sie installieren möchtenEIPSuccess=erfolgreich installiert!buip=inf Uninstallerbuip2=Sind Sie sicher, dass Sie deinstallierenbuip3=erfolgreich deinstalliert!langdesc=Deutsch
  13. Like
    RicaNeaga reacted to Geej in Everything Search Engine - v1.3.3.658b   
    Thanks for the feedback, mooms. Fixed German string.
    Cheers
  14. Like
    RicaNeaga reacted to myselfidem in Everything Search Engine 1.3.3.658b   
    A little typo error inside Evthing.inf:
    [Strings]T13ROE=SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\EverythingConfigDisplayProgram=SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\EverythingAppName=Everythingversion=1.3.2.644bThanks to change to: version=1.3.2.645b
     
    Regards
  15. Like
    RicaNeaga reacted to Geej in Everything Search Engine 1.3.3.658b   
    typo fixed
    thanks, myselfidem!
  16. Like
    RicaNeaga reacted to Legolash2o in [SOLVED] IE10 langpack not integrated in 1.4.1.22   
    So the problem is because 'IE10 & KB2786081' are not pushed into the prerequisites list? Mooms, what did you do different to that they wan't in the prerequisites list. Did you import the last session?
     
    I've added a right-click option where you can move updates to and from the prerequisites list.
  17. Like
    RicaNeaga reacted to Geej in Everything Search Engine - v1.3.3.658b   
    I hope to maintain 1 version. Can be confusing maintaining many version because of some minor preference...
    I added the code for folder context menu but is disabled by default. Those who want folder context menu, manually remove ; from the line in these locations:
     
    [CreateService]; line 76 for x86cmd /c pushd %16422%\Everything & Everything.exe -install-service;cmd /c pushd %16422%\Everything & Everything.exe -install-folder-context-menu[CreateService64]; line 98 for x64cmd /c pushd %16426%\Everything & Everything.exe -install-service;cmd /c pushd %16426%\Everything & Everything.exe -install-folder-context-menuSorry for the wrong upload. You see, even 1 version can go wrong during posting
    (The forum software is buggy, I had to redo the posting again, that where I lost track momentarily)
  18. Like
    RicaNeaga reacted to Geej in Everything Search Engine - v1.3.3.658b   
    Inf now in unicode encoding.
    Updated and test with French as default (thru [strings.0409]). Integrate with WTK ok.
    (Has enabled folder context menu in my test and is able to create folder in localised string. Clicking on the context menu also able to launch Everything properly)

    Hi RicaNeaga
    If you want folder context menu enabled, please follow tip in post #134
  19. Like
    RicaNeaga reacted to Geej in Everything Search Engine - v1.3.3.658b   
    Updated to v1.3.2.644b
  20. Like
    RicaNeaga reacted to Geej in Everything Search Engine 1.3.3.658b   
    Updated to v1.3.2.644b
  21. Like
    RicaNeaga reacted to Geej in Run With Parameters 2.1.6   
    Homepage

    Tiny tool, which allows running any application with a parameter. Instead of going to the Command Prompt, users can simply right-click an application and enter the parameters in the pop-up window.

    Features:
    - integrates into Explorer
    - remembers last parameters per application
    - knows the default parameters of some popular tools
    - supports custom file types

    Context Menu with Explorer Integration.
    When right-click, 'Run With Parameters' will appear in context menu for .bat, .cmd, .exe, .msi, .msp, .scr , .vbs file type
    'Run With Parameters (as administrator)' will appear in context menu for .exe, .scr type when 'shift' key is hold down.

    Default is English. To change language, see [Readme] section of the inf.


    RunWithParameters216_inf_addon.cab
    Size: 72.21 Kb (73,946 bytes)
    MD5: A6EE890F8A49F3A05BB19390542F6210
  22. Like
    RicaNeaga reacted to Geej in Run With Parameters 2.1.6   
    Updated to v2.1.4

    Includes "Run with parameters (as administrator)' when shift key is hold down. (for exe & scr type)
  23. Like
    RicaNeaga reacted to Geej in Toggle Hidden Files Folders   
    Inspired by this post, this addon adds an explorer background context menu to toogle hidden files & folders.
     
    For x86/x64
     

     

    ToggleHiddenFilesFoldersBgContextMenu.WA
    Size: 1.87 Kb (1,912 bytes)
    MD5: D1D3F62548782094E8C68EDB2A456977
     



  24. Like
    RicaNeaga reacted to mooms in [SOLVED] IE10 langpack not integrated in 1.4.1.22   
    @RicaNeaga: I Kow you wanted to help and I thank you for that but I said multiple times and since the first post that a previous version of WinToolkit can integrate the French IE10 LP just fine, so I think we can safely draw the conclusion that this is not a MS bug in this case.
     
    @myselfidem: Only cab/msu (not IE10 exe directly) can be integrated with test15. I will post links and explanation in the French section in a minute.
  25. Like
    RicaNeaga reacted to feet in Option to disable prerequisites in AIO for advanced users   
    A strong, inhibited desire for total control 
×
×
  • Create New...