
myselfidem
MemberContent Type
Profiles
Forums
Events
Everything posted by myselfidem
-
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
IMHO, even if it works using code (quotes = ") with Autounattend.xml file, if you sell computers I think it's better to use: " (like this) even if you write manually whithout using WSIM! For your personnal use, you can do like you want, of course! -
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
Yes! Using quotes with Autounattend.xml file is writed: " When you use WSIM and save your customized Autounattend.xml file using quotes you will see that quotes (") are writed " when you read your file. -
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
With this example, it's not really needed to use quotes (" = ") because there is no folder names with empty spaces...But quotes will be needed if there is folder names with empty spaces: like my first example ("%systemdrive%\Program Files (x86)\totalcmd\"). -
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
http://technet.micro...314(WS.10).aspx However I made a successful test using the correct path for "wincmd.ini" with Autounattend.xml file <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>Password never expires</Description> <CommandLine>cmd /C wmic useraccount where "name='Paul'" set PasswordExpires=FALSE</CommandLine> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Description>Installing TotalCommander</Description> <CommandLine>cmd /c %systemdrive%\Install\TotalCommander\tc80x64beta11.exe</CommandLine> <Order>2</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Description>Changing path</Description> <CommandLine>cmd /c copy /y "%systemdrive%\Install\TotalCommander\wincmd.ini" "%userprofile%\AppData\Roaming\GHISLER\"</CommandLine> <Order>3</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Description>Post Setup Installation with WPI</Description> <CommandLine>cmd /c %SystemDrive%\Install\FirstLog_x64.cmd</CommandLine> <Order>9</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> http://www.msfn.org/board/topic/139150-working-unattendxml-and-applications-installs/page__view__findpost__p__894362 -
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
Could you share with us how do you install silently your TotalCommander file, first, and your Autounattend.xml file? At the end of the batch file you can use: >nul timeout /t 5 to add a pause: 5 means 5 seconds. But, if I remember you will see nothing than a black window, even if you add a pause (for n seconds)! Maybe you can use a batch file and not SetupComplete.cmd! *Edit: After testing TotalCommander (x64) on the Virtual Machine, I see that "wincmd.ini" is set to : %userprofile%AppData\Roaming\GHISLER\wincmd.ini. Maybe you changes the path for "wincmd.ini" during your installation? The problem is SetupComplete.cmd is launched first and after FirstLogonCommand! -
Yes! You can download USSF version 1.5.0.0 here (version of the file = 3.2.12.1) http://www.softpedia.com/progDownload/Universal-Silent-Switch-Finder-Download-180984.html
-
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
If you have some problem using SetupComplete.cmd you can add inside your Autounattend.xml a new Command for TotalCommander. Adapt to your needs. <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Description>Installing TotalCommander</Description> <CommandLine>cmd /c %systemdrive%\install\TotalCommander\tc80x64beta11.exe (your silent switches)</CommandLine> <Order>1</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Description>Customizing TotalCommander</Description> <CommandLine>cmd /c COPY /Y "%systemdrive%\install\TotalCommander\wincmd.ini" "%systemdrive%\Program Files (x86)\totalcmd\"</CommandLine> <Order>2</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
Thanks! Sorry...I removed all attached files inside the forum! -
FirstLogonCommands failing
myselfidem replied to leozack's topic in Unattended Windows 7/Server 2008R2
Tested successfuly with my Administrator account inside Autounattend.xml file. No errors with Windows 7 Ultimate x86 SP0 and Windows 7 Ultimate SP1 whithout using SetupComplete.cmd! It is just an example and adapt this one to your needs for the donetFx40 path! FirstRun.cmd and dotNetFx40_Full_x86_x64.exe are set inside= Distribution_Folder\sources\$OEM$\$$\Setup\scripts FirstRun.cmd @echo off REM Called from %windir%\Setup\Scripts\FirstRun.cmd REM Which is copied from [InstallDrive]\sources\$OEM$\$$\Setup\Scripts\FirstRun.cmd echo Installing .NET 4.0 ...Please wait... echo. cd /d %~dp0 %~dp0dotNetFx40_Full_x86_x64.exe /q /norestart echo Now rebooting ... shutdown -r -t 30 Partial Autounattend.xml file <AutoLogon> <Enabled>true</Enabled> <LogonCount>9999999</LogonCount> <Username>Paul</Username> </AutoLogon> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <Order>1</Order> <Description>Password never expires</Description> <CommandLine>cmd /C wmic useraccount where "name='Paul'" set PasswordExpires=FALSE</CommandLine> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <Description>Installing Net Framework 4.0</Description> <CommandLine>cmd /c %Windir%\Setup\scripts\FirstRun.cmd</CommandLine> <Order>9</Order> <RequiresUserInput>false</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> <UserAccounts> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value></Value> <PlainText>true</PlainText> </Password> <DisplayName>Paul</DisplayName> <Name>Paul</Name> <Group>Administrators</Group> </LocalAccount> </LocalAccounts> </UserAccounts> Installation images I hope that can help you! -
setupcomplete.cmd problem
myselfidem replied to Octopuss's topic in Unattended Windows 7/Server 2008R2
You can try like this: @echo off REM if not exist totalcmd folder MKDIR "%systemdrive%\Program Files (x86)\totalcmd" COPY /Y "%systemdrive%\install\TotalCommander\wincmd.ini" "%systemdrive%\Program Files (x86)\totalcmd\" exit Adapt to your needs the batch file, if the folder "totalcmd" exists or not! -
We can read inside the tutorial: http://www.msfn.org/...64-bit-updated/ I hope that can help you!
-
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
Yes! If you see carefully my examples above, you will see: <InstallToAvailablePartition>false</InstallToAvailablePartition> Enjoy! -
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
Look at my first example above (and the image added)! Again: attach your Autounattend.xml file, please (BIOS-Based system)! -
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
I think you can't mix BIOS-Based system and UEFI-Based system with your Autounattend.xml file! -
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
Please attach your Autounattend.xml file! If you don't want to see the system partition you can use Autounattend.xml file (BIOS-Based system), like this: <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>SEVEN</Label> <Letter>C</Letter> <Order>1</Order> <Active>true</Active> <PartitionID>1</PartitionID> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>false</InstallToAvailablePartition> </OSImage> </ImageInstall> Tested successfuly! Image One Disk -
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
No errors for me! Letter C:\ for Windows 7. Have you an BIOS-Based system or UEFI-Based system? Because Autounattend.xml file isn't the same for Create Partitions! -
Automatic disk partitioning in Autounattend.xml
myselfidem replied to Kiavik's topic in Unattended Windows 7/Server 2008R2
This can be done like this: For BIOS Based system Example <?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="[url="http://schemas.microsoft.com/WMIConfig/2002/State"]http://schemas.microsoft.com/WMIConfig/2002/State[/url]" xmlns:xsi="[url="http://www.w3.org/2001/XMLSchema-instance"]http://www.w3.org/2001/XMLSchema-instance[/url]"> <SetupUILanguage> <UILanguage>it-IT</UILanguage> </SetupUILanguage> <InputLocale>0410:00000410</InputLocale> <SystemLocale>it-IT</SystemLocale> <UILanguage>it-IT</UILanguage> <UserLocale>it-IT</UserLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="[url="http://schemas.microsoft.com/WMIConfig/2002/State"]http://schemas.microsoft.com/WMIConfig/2002/State[/url]" xmlns:xsi="[url="http://www.w3.org/2001/XMLSchema-instance"]http://www.w3.org/2001/XMLSchema-instance[/url]"> <DiskConfiguration> <WillShowUI>OnError</WillShowUI> <Disk wcm:action="add"> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> <!--System partition--> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Type>Primary</Type> <Size>100</Size> </CreatePartition> <CreatePartition wcm:action="add"> <Order>2</Order> <Type>Primary</Type> <Extend>true</Extend> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Format>NTFS</Format> <Label>system</Label> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> <!--Windows partition--> <ModifyPartition wcm:action="add"> <Format>NTFS</Format> <Label>Win7Ent</Label> <Letter>C</Letter> <Order>2</Order> <PartitionID>2</PartitionID> </ModifyPartition> </ModifyPartitions> </Disk> </DiskConfiguration> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ENTERPRISE</Value> </MetaData> </InstallFrom> <InstallTo> <DiskID>0</DiskID> <PartitionID>2</PartitionID> </InstallTo> <WillShowUI>OnError</WillShowUI> <InstallToAvailablePartition>false</InstallToAvailablePartition> </OSImage> </ImageInstall> <UserData> <ProductKey> <WillShowUI>OnError</WillShowUI> <Key>XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</Key> </ProductKey> <AcceptEula>true</AcceptEula> <Organization>Contoso</Organization> </UserData> Image System partition and Windows partition -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
Thanks! And could you also add the new translated French file (SFX-French.rar) ? http://www.mediafire.com/?3s43j1jw65ycd Regards -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
Sorry, doesn't work like this, but the example above works fine for me: weird! We can also use Start | Run and write: mailto:user@contact.com and the mail is opened! -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
About adress e-mail inside the window : About ...to send e-mail...If we add inside Language file lng: Example: [Author] name=user mail=mailto:user@contact.com (with quotes) ver=1.3 Beta Works fine Regards -
Beware Addons with Malware!
myselfidem replied to lapetite66's topic in Malware Prevention and Security
New version SFXMaker_1.3.0_Beta_installer.exe http://www.msfn.org/board/topic/119394-sfxmaker-130-beta-a-switchless-installer-maker/ Result Virus Total: http://www.virustotal.com/file-scan/report.html?id=7d7702e767e972d530c01ba19dc0d13a0957e75f68a3b15c33d288b2071ae5e3-1323017258 Many thanks to iuli_kyle. Enjoy! -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
Many thanks! Added French translation for the new lines added, same download link above (with the correct link now! Sorry). Regards -
SFXMaker 1.3.1 Final - a Switchless Installer maker
myselfidem replied to iuli_kyle's topic in Application Installs
Of course! Regards -
To do simple...Have you solved the Write Protect question? Maybe this can help: http://kashu-sd.co.jp/en/products/usbwpservice.html