-
Posts
9176 -
Joined
-
Last visited
-
Days Won
366
Everything posted by anyweb
-
Windows 8.1 client not finding new deployments
anyweb replied to chad.hembrock's topic in Configuration Manager 2012
what version is your client ? and how did you install it and windows 8.1 ? -
thanks, it's a requirement because Operating System Deployment requires it for the boot images needed to deploy both Windows 8.1 and Server 2012 R2 operating systems, in addition migration of data between those operating systems needs the newer version of USMT, Configuration Manager 2012 SP1 also required ADK 8.0 for the same reasons (support Windows 8/Server 2012)
-
after the time/date change did you confirm all servers have changed time ? have you tried rebooting them ?
-
what time does it say on the hyperv host ?
-
it's not available, if you want all the bitlocker actions then import the one i linked to above your post, it's all in that task sequence just remove the bits you don't need.
-
Slow image deployment download since SCCM 2012 R2 upgrade
anyweb replied to Gareth86's topic in Configuration Manager 2012
ok the problem has been identified apparently (on a separate list) and here's what they said so i guess a hotfix is coming cheers niall -
Server 2012 R2 & SCCM 2012 R2 - WDS Crash
anyweb replied to hoivikaj's topic in Configuration Manager 2012
have you tried uninstalling PXE on the dp, uninstalling WADK 8.1, reinstalling WADK 8.1 (make sure it's the newest version), re-enabling PXE on the dp ? -
Auto-assign computername in OSD Deployment with VB Script
anyweb replied to Bever87's topic in Configuration Manager 2012
have you added any connection capability in your boot wim ? you need to add the optional component (Winpe-mdac) ? -
Slow image deployment download since SCCM 2012 R2 upgrade
anyweb replied to Gareth86's topic in Configuration Manager 2012
I wonder if there is any update available for your vmware server solution ? can you tell us what version you are running ? -
Introduction System Center 2012 R2 Configuration Manager supports a wide variety of operating systems including alternative operating systems such as the following:- Mac Client: Mac OS X 10.6 (Snow Leopard) Mac OS X 10.7 (Lion) Mac OS X 10.8 (Mountain Lion) UNIX/Linux Client: AIX Version 7.1, 6.1, 5.3 Solaris Version 11, 10, 9 HP-UX Version 11iv2 , 11iv3 RHEL Version 6 , 5, 4 SLES Version 11, 10, 9 CentOS Version 6, 5 Debian Version 6, 5 Ubuntu Version 12.4 LTS, 10.4 LTS Oracle Linux 6, 5 Note: A list of supported clients is available on Technet here. In this post I will show you how to install the Linux client on a popular Linux operating system (Centos 6.4) and do some basic actions like hardware and software inventory in System Center 2012 R2 Configuration Manager. This guide assumes you have already installed your Linux server and are ready for the next step. If you have not installed it yet just download the Live CD from here and boot from it, choose the option to Install to hard drive once the os has booted to the desktop. Step 1. Download the Alternative Client files Note: The download required will be different depending on which version of Configuration Manager you are using. Download the correct version matching the version you are running, so if for example you are running the Configuration Manager 2012 R2 CU1 use these updated clients. When you started the System Center 2012 R2 Configuration Manager installation you probably didn't notice that there was a link to download alternative clients on the splash screen highlighted in the screenshot below If you did click on the link it would bring you here so go ahead and download those client files. Update: check the following link for updated supported clients and click here for R2 SP1 or Current Branch clients. Step 2. Extract the Linux client files on a Windows computer On the computer you downloaded the alternative client files, locate the Linux client exe file and extract the contents somewhere local by double clicking on the ConfigMgr Clients for Linux.exe file. extract the files to somewhere useful. the files are extracted.. Step 3. Copy the linux client files to your linux server Logon as a testuser on the Centos server, click on the Computer icon, and click on File, then Connect to server enter the details required to connect to a server that has the client files downloaded from Step 1 above and click on connect (notice I chose windows shares in the service type drop down menu) then click on Connect you may be prompted for a password, enter it Locate the extracted files and copy them to your desktop Step 4. Install the Linux client To install the client we need the right permission, and the permission needed is that of root. We will install the Linux client using the command line. Start a terminal by clicking on Applications, System tools and choosing Terminal. become root (the Linux equivalent of Administrator) by typing su - This will prompt you for a password, enter the password for root. change directory (cd) to the directory that holds the client installation files. Linux is case sensitive so keep that in mind. make the installer executable by typing the following chmod +x install and then install the client using the following command (for an X64 server os, use the corresponding X86 file if it's 32 bit). Change the management point FQDN and sitecode to match your infrastructure. ./install -mp sccm.server2008r2.lab.local -sitecode P01 ccm-Universalx64.1.0.0.4580.tar After some moments you'll see Installation Complete, if you get a "Pre-Install validator failed. Please check the version of OpenSSL with CM installation requirements" try the -ignoreSHA256validation switch as specified here. You can review what's happening realtime via the log file using the following command tail -F /var/opt/microsoft/scxcm.log Tip: to uninstall the client use /opt/microsoft/configmgr/bin/uninstall Step 5. Change logging options Logging for the Linux based client is pretty much all done in one log file called scxcm.log contained in /var/opt/microsoft/. How that log file gets written to is governed by the following configuration file /opt/microsoft/configmgr/etc/scxcm.conf. Below is what the conf file looks like by default:- FILE ( PATH: /var/opt/microsoft/scxcm.log MODULE: WARNING MODULE: scx.client WARNING ) using vi or your favorite text editor in Linux, change it so that it now reads as follows FILE ( PATH: /var/opt/microsoft/scxcm.log MODULE: TRACE MODULE: scx.client TRACE ) save the changes and stop and then start (or simply restart) the Linux client To start the client: /etc/init.d/ccmexecd start To stop the client: /etc/init.d/ccmexecd stop Tip: The default logging mode for the scxcm.log file is WARNING which Indicates possible problems for the client operations. TRACE mode logs verbosely. As the log file is not trimmed in any way, when you are finished doing your diagnosis it is recommended to change it back to WARNING mode and restart the client daemon. Step 6. Approve the Linux client In the Configuration Manager console, locate the new linux client in Devices, and right click choose Approve. answer yes when prompted the client is now listed as Approved in the console Step 7. Request a machine Policy as root issue the following command /opt/microsoft/configmgr/bin/ccmexec -rs policy in the log file above you can see the word TRACE repeated over and over, this confirms that our change to the logging options were indeed processed and it's now in Trace mode. Step 8. Perform a hardware inventory Hardware inventory on a Linux or UNIX server runs according to the schedule you configure in client settings. By default, this is every seven days. The client for Linux and UNIX supports both full inventory cycles and delta inventory cycles. You can also force the client on a Linux or UNIX server to immediately run hardware inventory. To run hardware inventory, on a client use root credentials to run the following command to start a hardware inventory cycle: /opt/microsoft/configmgr/bin/ccmexec -rs hinv as root issue the following command /opt/microsoft/configmgr/bin/ccmexec -rs hinv on your Configuration Manager server, you can check the MP_HINV.log and look for the HINV details from our Centos computer coming in... now's a good time to start Resource Explorer in the console to see what info it has got and here is what the installed applications look like and that's it, you've installed the Alternative client on our Centos server and performed a Hardware Inventory and got the information uploaded to your Primary server. You can even install RPM packages using Packages (and programs). I'll deal with that in a separate post. until then, adios niall. Related Reading How to Install Clients on Linux and UNIX Computers in Configuration Manager - http://technet.microsoft.com/en-us/library/jj573939.aspx Microsoft System Center 2012 R2 Configuration Manager - Clients for Additional Operating Systems - http://www.microsoft.com/en-us/download/details.aspx?id=39360# Hardware Inventory for Linux and UNIX in Configuration Manager - http://technet.microsoft.com/en-us/library/jj573945.aspx ConfigMgr 2012 SP1 and UNIX/Linux Clients – Part 1: Introduction and Client - http://blogs.technet.com/b/manageabilityguys/archive/2013/04/11/configmgr-2012-sp1-and-unix-linux-clients-part-1-introduction-and-client.aspx ConfigMgr 2012 SP1 and UNIX/Linux Clients - Part 2: General Operations and Inventory - http://blogs.technet.com/b/manageabilityguys/archive/2013/05/03/configmgr-2012-sp1-and-unix-linux-clients-part-2-general-operations-and-inventory.aspx Get help with Linux - http://www.linux-noob.com
-
"IT Organization" Text SCCM 2012 SP1
anyweb replied to abremel's topic in Configuration Manager 2012
great, it works because the default client settings apply to everything in the hierarchy -
Slow image deployment download since SCCM 2012 R2 upgrade
anyweb replied to Gareth86's topic in Configuration Manager 2012
are all of you using vmware ? have you checked for any updates to vmware to support the newer boot images ? -
"IT Organization" Text SCCM 2012 SP1
anyweb replied to abremel's topic in Configuration Manager 2012
change it in the Default Client settings, then update your boot image(s) to your distribution points. -
Post Config Manager 2012 R2 Upgrade Errors - Help Needed
anyweb replied to TopherWilkes's topic in Configuration Manager 2012
ok thanks, i've filed a bug on connect and pointed to this post, thanks for your information and troubleshooting- 6 replies
-
- configuration manager 2012 r2
- configuration
-
(and 5 more)
Tagged with:
-
Post Config Manager 2012 R2 Upgrade Errors - Help Needed
anyweb replied to TopherWilkes's topic in Configuration Manager 2012
Hi David and Topher, can you please tell me what your patch statement said and where you had it defined (client installation properties ?), did both of you have Automatic client upgrade selected ? I'm raising a bug on connect for this issue cheers niall- 6 replies
-
- configuration manager 2012 r2
- configuration
-
(and 5 more)
Tagged with: