-
Posts
9207 -
Joined
-
Last visited
-
Days Won
367
Everything posted by anyweb
-
did you try this yet ? http://www.windows-noob.com/forums/index.php?/topic/3890-using-sccm-2012-beta-2-in-a-lab-part-4-application-installation/
-
i've just tested importing the Task Sequence on a console with SCCM 2007 SP2 R3 and MDT 2010 integrated, worked no problem. I don't have a SCCM console without MDT integration to test with so maybe that's it...
-
-
follow the guide instead, then tell me what fails.
-
and where are you getting the error above ? at what stage in the Build and Capture process was it ?
-
using vNext in a LAB - Part 3. Additional Configuration
anyweb replied to anyweb's topic in Configuration Manager 2012
are you testing with SCCM 2012 beta 1 ? you do realise that beta 2 is out now and is the current version ? -
How can I hide the Task Sequence Progress Window
anyweb replied to anyweb's question in Frontends, HTA's and Web Services
and if using a .VBS file try the following Dim oTSProgressUI Set oTSProgressUI = Wscript.CreateObject("Microsoft.SMS.TSProgressUI") oTSProgressUI.CloseProgressDialog() -
Configuring Software Update Point within SCCM
anyweb replied to anyweb's question in Software Update Point
check to see if this computer is in an ou targetted with any other software updates (eg: wsus gpo) if not, check the actions tab of the client, are all actions present ? -
Client install issue: Error 67 Anyweb tutorial
anyweb replied to Chadwill's topic in Configuration Manager 2012
check the following folder on the client c:\windows\ccm\logs anything in there ? -
client can not be installed in server 2003 or 2003r2
anyweb replied to liuyanshare's topic in Configuration Manager 2012
verify that your boundary group is assigned to your site -
SCCM 2012 Client slow to install during OSD
anyweb replied to AkumaUk's topic in Configuration Manager 2012
are you sure you are using that boot image in your task sequence ? -
Script to deploy SCCM secondary site?
anyweb replied to IanLeach's topic in Configuration Manager 2007
have you seen this post from Chris ? http://myitforum.com/cs2/blogs/cnackers/archive/2011/09/09/configuration-manager-hydrating-secondary-sites-with-configmgr.aspx -
SCCM 2012 Beta 2 in a SCCM 2007 environment
anyweb replied to Chadwill's topic in Configuration Manager 2012
remember this is beta, and the EULA states you should not put it in production, but sure, in a lab go ahead and test a migration, post your results/questions here -
SCCM 2012 Beta 2 in a SCCM 2007 environment
anyweb replied to Chadwill's topic in Configuration Manager 2012
well just keep them in separate test environments, dont have overlapping boundaries and dont push the client, should be fine -
how to get rid of abortpxe.com
anyweb replied to anyweb's question in Troubleshooting, Tools, Hints and Tips
what does the smspxe.log reveal about the probelm when you pxe those affected computers (hint: search for the mac address of the computer and not the messages) -
I'm extremely pleased and very proud to have received this mail in the post today, I'd like to share part of it with you:- Huge thanks go out to my Family for supporting me and to my MVP colleagues for their support, and to my employer for supporting my efforts (Enfo, Zipper) and last but not least Microsoft for re-awarding me this covetted title. cheers ! niall
-
Deploying Firefox in SCCM 2012 not working
anyweb replied to nk5316's question in Deploy software, applications and drivers
so you created a package in SCCM 2012 beta 2 ? and are trying to deploy that ? or an application ? please tell us more about what youve done, and how -
well it's a bit confusing but we'll get used to it soon enough, to add to this, when you get to Deploying applications in a Task Sequence (for OSD) you'll see that the application will need a deployment type for this application and that the deployment type should be set to Install for System or Install for System if resource is device; otherwise install as userotherwise the application will not be able to be added to the Install Applications step
-
Windows 7 deploying problem
anyweb replied to diablo's question in Deploying Windows 10, Windows 8.1, Windows 7 and more...
check the package status, is it listed as installed on the distribution point ? also, did you configure the network access account ? -
hi Dan, thanks for the kind words ! i think the Technet documentation is actually fantastic but it's not all there obviously, however in relation to what you are asking see below (from Technet, how to create an Application) Install for user or System – Specify whether the applications deployment type will be installed for the currently logged on user or for all users. You can also specify that the deployment type will be installed for all users if it is deployed to a device or to a user only if it is deployed to a user. Configmgr 2012 application installation is all about the User so in the examples above we are just experimenting with the different options available to us, as regards Deployments yes some settings are not changeable after they are created (like most of the deployment settings, some of the general settings like collection/software), perhaps this might change in future releases i don't know
-
Introducing the windows-noob.com FrontEnd HTA ver 1.0
anyweb replied to anyweb's question in Frontends, HTA's and Web Services
if you look at the task sequence i've supplied there is a network connect step, and that must occur (it maps to a drive letter) before you can store anything on the network, below is the XML from the step in the task sequence itself, just import the TS into configmgr and you can see the step yourself -<step name="Connect to Network Folder" description="This step is needed otherwise we cannot display any stored States in the Bare Metal/New Computer scenario" successCodeList="0" runIn="WinPEandFullOS" type="SMS_TaskSequence_ConnectNetworkFolderAction"> <action>smsnetuse.exe %SMSConnectNetworkFolderPath%</action> -<defaultVarList> <variable property="DriveLetter" name="SMSConnectNetworkFolderDriveLetter"> Z:</variable> <variable property="Password" name="SMSConnectNetworkFolderPassword"> </variable> <variable property="Path" name="SMSConnectNetworkFolderPath"> \\sccm\USMTStores </variable> <variable property="Username" name="SMSConnectNetworkFolderAccount"> server2008\sccmnaa </variable> </defaultVarList> </step>