
ICANIT
MemberAbout ICANIT

- Birthday 10/05/1966
Contact Methods
-
MSN
tbs@icanit.dk
-
Website URL
http://www.icanit.dk
-
ICQ
33848945
-
Yahoo
toobadbs
ICANIT's Achievements
0
Reputation
-
Hi, I have a little isue with gcond; in my useroptions, i have DisableifdoGray=true. lets say i have these three programs: ProgA excl=ProgB ProgB gcond=something ProgC gcond=something If Graycondition is met on both ProgB and ProgC, they are both gray and I can't click ProgC. But I can click ProgB because it is on the exclusionlist of ProgA. I would like to have programs grayed out and unclickable, if condition is met, no matter if its on exclusionlist on other programs (entries in config.js) can this be solved?
-
in your config file, add this for program "ABC": deps[pn]=['xxx']; When you mark ABC, program with UID=xxx will be marked too.
-
WPI 7.7: SW Installation failes when using arguments
ICANIT replied to jonant1's topic in Windows Post-Install Wizard (WPI)
Try without the " this works for me: cmds[pn]=['%ROOT%\\Master\\office2k7uk\\setup.exe /adminfile User.msp']; -
Hi Davidville, this is what i did: cmds[pn]=['lpksetup /i da-dk /r /p %ROOT%\\Install\\System-Tools\\Language\\lp64.cab']; cond[pn]=['getBits()==64 && getOSver()==Win7" && getOSlang()!="DAN"]; have in mind that it only works on the Ultimate version, not Pro.
-
Colornokia: Your Avast is set to Exclude an hidden entry. you can't do that, only exclude shown entries. Its not a bug. :-)
-
you can use: cond[pn]=['getBits()==32']; and so on....
-
for Workgroup you can write anything you want. but for Domain, the domain must exist and be accessable from the client computer and the useraccount must exist in AD and have rights for creating computeraccounts. How are you planning to use this? you cannot create a Useraccount from the client, so the "User Name" in your box must be an allready existing user in AD, and then you dont need to type the password twice. (default, only Administrators have rights to join computers to the domain) Personally I dont see the need for this, since its done in the unattended SIF or XML file. but lets see what you can come up with. :-)
-
Cannot install eMule Plus silently with WPI
ICANIT replied to deadbug's topic in Windows Post-Install Wizard (WPI)
Try without the quotes. you dont have any spaces in your path or filename, so you dont need the quotes. I do it like this: cmds[pn]=['%ROOT%\\Install\\Emule\\emuleplus12b.exe /S']; -
Not joining domain & regional settings
ICANIT replied to anthonyqld's topic in Unattended Windows 7/Server 2008R2
for regional settings i have this: <settings pass="oobeSystem"> <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <InputLocale>da-DK</InputLocale> <SystemLocale>da-DK</SystemLocale> <UILanguage>en-US</UILanguage> <UILanguageFallback>en-US</UILanguageFallback> <UserLocale>da-DK</UserLocale> </component> at first I had it under "specialize" and I had the same problem, all was in danish but I had to manually click "next", after moving it to "oobeSystem" it works 100% unattended for me. -
Not joining domain & regional settings
ICANIT replied to anthonyqld's topic in Unattended Windows 7/Server 2008R2
Anthonygld: I had the same problem, what i did to solve was this: first know what the problem is: if you install from WDS you computer has allready been giving a name when you start to install. if you specify another name later in the process you will get your error. solution is to uncheck "do not create account in the domain........" and have this line in your unattended.xml: <ComputerName>*</ComputerName> (no name here) Your installation will accept the name of your computer, provided by WDS, and join this computername to your domain. and you are good to go. :-) -
Howto start WPI after unattended W7 with MDT2010?
ICANIT replied to Monkeymen's topic in Windows Post-Install Wizard (WPI)
Put your $OEM$ folder under your Images\install-() folder. to start WPI i call it from firstlogoncommand: <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>\\IC-DEPLOY\Clients\Install\wpi.cmd</CommandLine> <Description>WPI</Description> <Order>1</Order> <RequiresUserInput>true</RequiresUserInput> </SynchronousCommand> </FirstLogonCommands> Works perfect. by the way, have you managed to get rid of the choicebox for country, timezone and keyb. ?? i can unattended make the selections, but box is still showing and I have to click next. (sorry for being off topic) -
Workgroup names are always uppercase. Are domain names uppercase, too? Case sensitive? - Netbios names are typically uppercase, but FQDN are not, ex: DOMAIN\User-account = user-account@domain.com Is a domain user always a member of at least 1 group? (admins, accounting, peons, etc)? - Yes, "Domain users" If above is yes, do you specify it when creating user account? - No, its default when you create the account in AD (active directory) When on a workgroup you make a Windows User Account so not using Administrator (even though new user can be administrator), usually just your name, Mark, Bob, etc. Now, when formatting a computer for use in a Domain, do you still make a Windows User Account (not Administrator) AND domain account? - No, you only login with the domain account. Domain admins do have locally admin rights on the client by default. Are client computer names important on Domains? - Yes and No, since you typically doesnt have client-to-client communication the name is not important, but you cant have two identical names on the domain. it is however nice to have some policy on names, for easy identification. When done installing Windows on client machine, do you make the user account on the machine, or through the server? - Computer accounts are made on the client when you join the domain, user accounts are made in AD on the server.
-
HI mritter, your the developer so i guess you must know. :-) but from your answer i get that this: cond[pn]=['getbits()==32']; - should hide my app if OS is 32 bit !? thats not the case. the line is meaning, "show only this app if OS is 32 bit" so in my opion this line: cond[pn]=['isLogOnServer("\\DC-A")']; - should also be positive and mean "show only this app if LogOnServer is DC-A". it gets quite confusing if Cond[] ,is ether positive or negative depending of what function you want to run. and still we have the ! sign to make it negative (meaning "if this is NOT true, do this") just sharing my thoughts :-)
-
This time my problem is with "isLogOnServer", i cant make do what I want. If I push Alt-G in WPI and check for isLogOnServer it says: isLogOnServer("\\DC-A") but if i do: cond[pn]=['isLogOnServer("\\DC-A")']; My app. is not shown ! if I do: cond[pn]=['!isLogOnServer("\\DC-A")']; the entry is shown, and I can write whatever I want as servername with no difference. My goal is to have this: cond[pn]=['isLogOnServer("\\DC-A") || isLogOnServer("\\DC-B")']; meaning, Only if your logon server is ether DC-A or DC-B, show this app. (servernames is not actual names, just ex.) what am i doing wrong?
-
Absolutely beautiful, now it works perfectly THX :-)