Jump to content


anyweb

Root Admin
  • Posts

    9214
  • Joined

  • Last visited

  • Days Won

    367

Everything posted by anyweb

  1. adding categories makes it easier for the end user to find the app they want in the Software Catalog, it's not intended to be used during the task sequence
  2. you might need to know if your drive is Protected with Bitlocker or not while in WinPE, so how do you do that ? by utilising a call to the GetProtectionStatus Method of the Win32_EncryptableVolume Class Using Wmi Code Creator I put together a simple code to check for the value of this class, so the first code looked like this strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2\Security\MicrosoftVolumeEncryption") Set colItems = objWMIService.ExecQuery( _ "SELECT * FROM Win32_EncryptableVolume",,48) For Each objItem in colItems Wscript.Echo "-----------------------------------" Wscript.Echo "Win32_EncryptableVolume instance" Wscript.Echo "-----------------------------------" Wscript.Echo "ProtectionStatus: " & objItem.ProtectionStatus Next And i've made it a bit more friendly so that it returns a MSGbox telling us what the value was determined to be in the code below <job id="IsEncrypted"> <script language="VBScript" src="..\ZTIUtility.vbs"/> <script language="VBScript"> strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2\Security\MicrosoftVolumeEncryption") Set colItems = objWMIService.ExecQuery( _ "SELECT * FROM Win32_EncryptableVolume",,48) For Each objItem in colItems x=objItem.ProtectionStatus Next Dim oShell Set oShell = CreateObject("WScript.Shell") oEnvironment.Item("DRIVE_Protected") = False retCode = x msgbox "0=Protection OFF" & vbCrLf & "1= Protection ON" & vbCrLf & "2=Protection Unknown" & vbCrLf & vbCrLf & "Protection Status Return code is:" & retcode,0, "Checking If Volume is Encrypted" If(retCode = 2) OR (retCode = 1) Then oEnvironment.Item("DRIVE_Protected") = True End If WScript.Quit(0) </script> </job> Once you are happy with the results, copy this script to your Bitlocker sub folder of the MDT 2010 update 1 scripts directory, update the package to the dp's and create a new Run Command Line step in the task sequence called Check ProtectionStatus This step sets a variable called DRIVE_Protected = True if an encrypted volume is found (if the return code is 1 or 2) and we can base other steps in the task sequence upon this variable (ie: in a REFRESH scenario). The actual run command line is as follows cscript.exe "%scriptroot%\bitlocker\IsVolumeEncrypted.wsf" Next, On the Options tab of this step, set the Success Codes to 0 1 2 Place this step before the Partition and Format disc steps in your task sequence. That's it, now you have enough info to query the computer in WinPE to find out if theres an encrypted volume or not, and based upon this do different actions in the task sequence. Remember to rem out the MSGbox command if you want this to run uninteruptted/zero touch cheers niall
  3. if i get time i'll try and put together something soon on the Software Update Point in SCCM 2012
  4. I wish to apologise to any user affected by this, I'm investigating how a spammer managed to sent 185 or so pm's to members of this site, i've since re-enabled the defenses taken many versions ago (limit the number of pm's per user to a set period of time) as they somehow were reset to 0, I've raised a Ticket with the Software producers (Invision) to see what they can tell me about it, once again, apologies for the inconvenience, and I will work hard to keep this place spam free, cheers niall
  5. what error are you seeing when you try to import the task sequence ? is your SCCM integrated with MDT 2010 Update 1 ?
  6. As the Windows team did with Windows 7, the Windows team is going to be are blogging about the engineering process and decisions with Windows 8. Microsoft kicked off the new “Building Windows 8″ blog with an August 15 introductory post by Windows President Steven Sinofsky. As usual with Sinofsky posts, there are lots of words (1,250 of them) and not much a Windows watcher would consider to be “news.” In fact, Sinofsky’s post stressed that the purpose of the blog isn’t about generating traffic, building excitement or “causing strategic confusion among the tens of thousands” of individuals invested in the future of Windows. Instead, “this blog is here to provide a two-way dialog about the complexities and tradeoffs of product development.” Microsoft also launched a new twitter handle (@BuildWindows8) to go along with the new blog. Sinofsky described the purpose of the blog in his inaugural post: “We’ve been hard at work designing and building Windows 8, and today we want to begin an open dialog with those of you who will be trying out the pre-release version over the coming months. We intend to post regularly throughout the development of Windows 8, and to focus on the engineering of the product. Welcome to ‘Building Windows 8,’ or as we call it, ‘B8.’” Microsoft officials have not shared a timetable for test builds, beta release(s) or the final RTM date for Windows 8. I continue to hear attendees of the mid-September Build conference will get either a developer preview or beta build of both Windows 8 client and server. The final RTM date for Windows 8 could be anywhere from April 2012 to fall 2012, from what various company watchers have heard. Speaking of the Build conference, Microsoft may still have yet to post any information on sessions, speakers or party dates/times for its confab, but a number of us Microsoft bloggers have taken it upon ourselves to start filling up attendees’ dance cards. If you’ll be in Anaheim on September 14, join us at the Build Blogger Bash. (RSVPs strongly encouraged, but no tickets required.) via > zdnet
  7. back in April of this year I did a livemeeting for http://www.scug.se (the local Swedish System Center User Group), and here is a recording of that one hour session, it's a big download at over 217MB you can download the Full video here or watch it directly on Microsoft's website here, there's tips about deploying Windows 7, HTA's, demos and more, I hope you enjoy it !! cheers niall
  8. after today's update do you like the changes ? please vote cheers niall
  9. done, if you have any problems with the new forums, please post them here.
  10. windows-noob.com will undergo a necessary upgrade today, shouldnt take longer than 10 minutes, during that time things might act a bit weird, just so you know, i'll update this post when done. cheers niall
  11. from memory... setup.exe /s setup.iss to install silently using the setup.iss file setup.exe /r setup.iss to record the settings you want automatically done in the above step
  12. read this post to see why How can I copy files from a package using a task sequence Not as straightforward as you think
  13. great stuff thanks for posting the resolution to your problem
  14. i think it's because it's Beta 2, could be due to installing the requirements/silverlight ?
  15. what version of sccm are you using and is mdt integrated or not, what version os mdt if so ?
  16. that's most likely your issue, what reason do you have for NOT running dhcp server on in your hyperV lab (don't you have a domain controller ?)
  17. of course it's possible, and here's an example just change the names of your variables to suit the purpose and that's it and change the options tab of your task sequence step (or group) to This Step will run if If Task Sequence Variable = somevalue do you want me to put together a guide for it ? cheers niall
  18. go ahead and try, i know that we've been successfully using this method to copy policies for over a year now (before the setup windows and configmgr step)
  19. parsing step node simply means it's reading the task sequence steps before actually running them, what you need to look for is Start Executing Use Toolkit Package, do you see that anywhere ?
  20. no you dont, the Use Toolkit package step immediatly before that takes care of it
  21. well pause a machine by pressing f8 and grab the logs before that step without the logs I can't really advise you
  22. i've updated the guide to make it clearer which download you need
  23. This list of guides is all about System Center 2012 R2 Configuration Manager. If you want to learn about SCCM 2012 this is how you can do it ! I've put together this list together to help people like you learn about Configuration Manager 2012 R2 and to help people learn about how they can integrate Microsoft Intune with Configuration Manager 2012 R2 to manage their iOS, Android and Windows Phone mobile devices. If you are looking for some of my other guides then please check below: Microsoft Intune (standalone) in Azure step by step guides are here Microsoft Intune (hybrid) guides look here (over 61,103 views as of July 2017) System Center Configuration Manager (Current Branch and Technical Preview) here (96,953 views, May 2018) Configuration Manager 2007 guides then look here (over 948388 views as of July 2017) Microsoft Deployment Toolkit guides are here SMS 2003 guides are here (over 10423 views as of July 2017) Note: Some of my guides are also available for download, please see below links download the Microsoft Intune Mobile Device Management guides here. download the Standalone Primary guides in PDF and WORD format here. Step-by-Step Guides CM12 in a Lab - PXE boot failure after upgrading to System Center 2012 Configuration Manager Service Pack 1 CM12 in a Lab - How can I deploy Windows 8 X64 to the Microsoft Surface Pro using Configuration Manager 2012 SP1 ? CM12 in a Lab - How can I deploy System Center 2012 Endpoint Protection Definition Updates from a UNC file share CM12 in a Lab - How can I determine what Antimalware Policy is applied to my SCEP 2012 SP1 client ? CM12 in a Lab - when running /testdbupgrade for System Center 2012 Configuration Manager SP1 you get an error: SQL Native client 11 is not installed CM12 in a Lab - How can I backup System Center 2012 Configuration Manager ? CM12 in a Lab - SQL Server 2012 SP1 support in System Center 2012 Configuration Manager SP1 CM12 in a Lab - The CM12 BitLocker FrontEnd HTA - video CM12 in a Lab - The CM12 BitLocker FrontEnd HTA CM12 in a Lab - Where can I download additional clients for System Center 2012 Configuration Manager SP1 ? CM12 in a Lab - How can I sequence applications using App-V version 5 for Configuration Manager 2012 SP1 CM12 in a Lab - How can I deploy a Hidden task sequence in Configuration Manager 2012 SP1 ? CM12 in a Lab - How can I pre-provision BitLocker in WinPE during Windows 8 deployments using Configuration Manager 2012 SP1 ? CM12 in a Lab - How can i disable “Connect to a wireless network” during Windows 8 OOBE ? CM12 in a Lab - How can I deploy Windows 8 in UEFI mode using Configuration Manager 2012 ? CM12 in a Lab - Why is my System Center 2012 Configuration Manager console in read-only mode ? CM12 in a Lab - How can I view hidden Endpoint Protection Reports in System Center 2012 Configuration Manager ? CM12 in a Lab - How can I upgrade System Center 2012 Configuration Manager ? CM12 in a Lab - How can I add a PXE enabled Distribution Point on Server 2008 X86 for System Center 2012 Configuration Manager ? CM12 in a Lab - How can I display my System Center 2012 Configuration Manager hierarchy in Bing Maps ? CM12 in a Lab - How can I enable Debug View in the Configuration Manager console? CM12 in a Lab - How can I easily prompt for a computer name in Configuration Manager 2012 CM12 in a Lab - Importing Computers using a file CM12 in a Lab - Two New Endpoint Protection Reports added, What are they and what do they look like CM12 in a Lab - How can I setup a Distribution Point on a Windows 7 PC in Configuration Manager 2012 ? CM12 in a Lab - How can I capture an image using Capture Media in Configuration Manager 2012 ? Hierarchy with CAS using System Center 2012 Configuration Manager - Part 1. Installation - CAS using System Center 2012 Configuration Manager - Part 2. Install the Primary server - P01 using System Center 2012 Configuration Manager - Part 3. Configuring Discovery and Boundaries using System Center 2012 Configuration Manager - Part 4. Adding roles and configuring custom Client Device Settings and custom Client User Settings using System Center 2012 Configuration Manager - Part 5. Adding WSUS, Adding the SUP role, deploying the Configuration Manager Client Agent using System Center 2012 Configuration Manager - Part 6. Adding the Endpoint Protection role, configure Alerts and custom Antimalware Policies using System Center 2012 Configuration Manager - Part 7. Build and Capture Windows 7 X64 SP1 using System Center 2012 Configuration Manager - Part 8. Deploying Applications using System Center 2012 Configuration Manager - Part 9. Deploying Monthly Updates using System Center 2012 Configuration Manager - Part 10. Monitoring our Monthly Updates Automatic Deployment Rule using System Center 2012 Configuration Manager - Part 11. Upgrading your hierarchy to Service Pack 1 using System Center 2012 Configuration Manager - Part 12. Connecting Powershell and building a reference image of Windows 8 with .NET 3.5 using System Center 2012 Configuration Manager - Part 13. Deploying Windows 8 X64 with custom Start screen using System Center 2012 Configuration Manager - Part 14. Using Compliance Settings
  24. Step 5. Create a new VM and PXE boot it Create a new virtual machine and PXE boot it, as the virtual machine is New and New to SCCM 2012, it's considered Unknown and therefore we should see whatever deployments we targetted to the All Unknown Computers collection, you should see the following press F12 to PXE boot, and the boot image starts loading we'll get prompted for our PXE password, enter it and click next and our task sequence menu appears, select Deploy Windows 7 Enterprise X64 SP1 and click next and our Deployment begins ! Ths OS installs... our new application Gets installed Create another Virtual Machine and PXE boot it, but this time choose Deploy Windows 7 Enterprise X64 and click next.
  25. Step 4. Deploy the Task Sequence to the All Unknown Computers collection In Software Library, select Task Sequences, select our Deploy Windows 7 Enterprise X64 SP1 Task sequence and right click, choose Deploy (of course you can also select the task sequence and click Deploy from the Ribbon above) for collection, click browse and select All Unknown Computers make sure to select the Vnext Distribution point then click next for Deployment Settings Purpose, make it available (optional) and place a checkmark in Make available to boot media and PXE click next through schedule (don't set anything there), and User experience, for Distribution keep the defaults, click close at the Deployment completion repeat the above for the Deploy Windows 7 X64 Enterprise Task Sequence.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.