-
Posts
2925 -
Joined
-
Last visited
-
Days Won
79
Everything posted by Peter van der Woude
-
3x Client Upgrade Packages!
Peter van der Woude replied to jimbojones444's topic in Configuration Manager 2012
No, this package is only generate during installation of the site. -
Using SCCM 2012 To Deploy Server 2012
Peter van der Woude replied to austinium's topic in Windows Server General
Is it configured to first download content? If so, you might see some movements in the CAS.log file. -
Here you've got a starting point. This is a simple HTA that asks for a computername. After pressing the button it will be added as a task sequence variable. <HTML> <HEAD> <TITLE>© 2012 - P.T. van der Woude - Inovativ</TITLE> <HTA:APPLICATION APPLICATIONNAME="HTASetComputerName" ID="objNewApplication" VERSION="0.9.6" BORDER="thin" MAXIMIZEBUTTON="no" MINIMIZEBUTTON="no" SINGLEINSTANCE="yes"/> </HEAD> <SCRIPT LANGUAGE="VBScript"> Sub Window_OnLoad() ' Set Window Size and Location Window.resizeTo 450,210 Window.moveTo (screen.width - document.body.clientwidth)/2, (screen.height - document.body.clientheight)/2 ' Set TSProgressUI Object Set objTSProgressUI = CreateObject("Microsoft.SMS.TSProgressUI") objTSProgressUI.CloseProgressDialog() End Sub Sub SetOSDComputerName() ' Set TSEnvironment Object Set objTSEnvironment = CreateObject("Microsoft.SMS.TSEnvironment") ' Set Task Sequence Variable OSDComputerName objTSEnvironment("OSDComputerName") = newComputerNameBox.value ' Close Window Window.Close() End Sub </SCRIPT> <BODY> <TABLE BORDER='0' WIDTH='100%' ID='AppTable' STYLE="font:12 pt calibri;table-layout:fixed"> <TR><TD COLSPAN='2'><img src="Logo_Inovativ.gif" alt="Logo_Inovativ" /></TD><TD COLSPAN='1'><B>Provide a computer name</B></TD></TR> <TR><TD ID = 'ComputerNameLabel' COLSPAN='2' VALIGN='top'></TD> <TD ID = 'ComputerNameBox' COLSPAN='1'><input type="text" name="newComputerNameBox" size="75" maxLength="15"></TD> <TR><TD COLSPAN='2' VALIGN='top'></TD> <TD COLSPAN='1'><BUTTON style="width:120;height:25" input id=runbutton name="Ok_button" onClick="SetOSDComputerName">Ok</BUTTON></TD></TR> <TR><TD STYLE='font-size:9pt' COLSPAN='2' VALIGN='bottom'><B>Blog:</B> <A HREF="http://www.petervanderwoude.nl">www.petervanderwoude.nl</A></TD> <TD STYLE='font-size:9pt' COLSPAN='1' VALIGN='bottom'><B>Twitter:</B> <A HREF="http://twitter.com/pvanderwoude">pvanderwoude</A></TD></TR></TABLE> </BODY> </HTML>
-
3x Client Upgrade Packages!
Peter van der Woude replied to jimbojones444's topic in Configuration Manager 2012
I can't explain why you have so many of them. If the packages are not deployed, or attached to a task sequence, it's save to delete them. -
Application requirement / Global Condition issue
Peter van der Woude replied to stgrdk's topic in Configuration Manager 2012
It might me a database corruption. So, if it's your production environment then I would make a CSS call with Microsoft.- 2 replies
-
- Configmgr 2012
- SCCM 2012
-
(and 3 more)
Tagged with:
-
Compressing the Windows 7 wim
Peter van der Woude replied to lord_hydrax's topic in Configuration Manager 2012
It might work, but not with the offline servicing functionality of ConfigMgr. -
Deploy Internet Explorer Proxy Config
Peter van der Woude replied to pvr02's question in Deploy software, applications and drivers
I thought, in the end, they are registry keys. If that's truly the case you could use compliance settings for that. -
Cann't upgrate service pack 1 sql for SCCM
Peter van der Woude replied to Pelegit's topic in Configuration Manager 2012
ConfigMgr is the official abbreviation of System Center 2012 Configuration Manager. -
Password Protecting A SCCM OSD Task Sequence
Peter van der Woude replied to tcilmo's topic in Configuration Manager 2012
See: http://social.technet.microsoft.com/Forums/en-US/78751d25-2e3d-44df-be86-fc1b5b054bf9/password-protect-osd-task-sequence?forum=configmanagerosd -
Applications vs packages
Peter van der Woude replied to Kevin79's question in Deploy software, applications and drivers
The default is (I thought) 5Gb. Also, the client will clean up the content it doesn't need anymore. Yes, you can have batch files or EXEs as applications. -
Client machine not getting policies ConfigMgr 2012
Peter van der Woude replied to vluu's topic in Configuration Manager 2012
I'm missing a few log files, like clientlocation and locationservices. They might contain some useful information. -
Change Computer name during SCCM 2012 OSD TS
Peter van der Woude replied to Lightjm's topic in Configuration Manager 2012
In ConfigMgr you have to start using task sequence variables. In this case your script has to create and set the OSDComputerName variable to your computer name, -
Applications vs packages
Peter van der Woude replied to Kevin79's question in Deploy software, applications and drivers
No, unless you create a deployment type without content and specify a installer on a network share as the command line. That way it will run the installer straight from the network location. No. Also, it wouldn't add any functionality, because once a application is installed it will always be validated as installed. -
Extract MSI?
Peter van der Woude replied to Kevin79's question in Deploy software, applications and drivers
Not all executables contain a MSI. -
Mass OSD computer rename
Peter van der Woude replied to imperial07's topic in Configuration Manager 2012
You would always have to specify the computer name somewhere, so if it's not during the deployment you could use a computer variable to store a (new) name. For new systems, simply import them in ConfigMgr and supply a name. -
Sccm 2012 R2 Patches deployement
Peter van der Woude replied to velum's topic in Configuration Manager 2012
I'm sorry, but I don't get the issue(s) you're having... please provide some more information.