After deploying SCCM2012, the PC in the domain will soon be able to find and batch deploy the client according to the rules, but the workgroup PC is cumbersome to install, and the official documentation needs to be installed manually, as follows:
1. Configure DNS and WINS addresses in advanced options for IP address settings of the network card (DNS address is DC address, the WINS address is the SCCM server IP address)
Command line:netsh interface ip set wins "Local Area Connection" static 10.100.2.15
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/5B/94/wKiom1UL7YigSUm3AAFxLIMMaHg078.jpg "title=" Screenshot2649.jpg "alt=" Wkiom1ul7yigsum3aafxlimmahg078.jpg "/>
2. Add the SCCM server IP address (SCCM server name and FQDN) to the Hosts file
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/5B/8E/wKioL1UL8dDS7L1oAAGAB4bVHWI944.jpg "title=" Screenshot2651.jpg "alt=" Wkiol1ul8dds7l1oaagab4bvhwi944.jpg "/>
Command line:set hostspath=%windir%\system32\drivers\etc\hosts
echo 10.100.2.15 sccm sccm.jinzhizun.cn >>%hostspath%
3, check the firewall settings, in the Allowed programs "File and Printer Sharing" and "Windows Management Instrumentation (WMI)" allows "home/work (private)" and "public" tick.
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M00/5B/94/wKiom1UL8wmxyw8jAAEsCSTuBmQ937.jpg "style=" float: none; "title=" screenshot2652.jpg "alt=" Wkiom1ul8wmxyw8jaaescstubmq937.jpg "/>
650) this.width=650; "src=" http://s3.51cto.com/wyfs02/M01/5B/8E/wKioL1UL9DWxQjSEAAArhLQZ-lU975.jpg "style=" float: none; "title=" screenshot2653.jpg "alt=" Wkiol1ul9dwxqjseaaarhlqz-lu975.jpg "/>
Command line:netsh advfirewall firewall set rule group= "File and Printer sharing" new Enable=yes
netsh advfirewall firewall set rule group= "Windows Management Instrumentation (WMI)" new Enable =yes
4. Run the SCCM client software installer with Administrator privileges (copy the C:\Program Files\Microsoft Configuration Manager\client directory from the SCCM server to the workgroup pc, run cmd with administrator privileges, Switch to client directory)
Command line:ccmsetup.exe smssitecode=001/mp:sccm dnssuffix=jinzhizun.cn
Or:ccmsetup.exe smssitecode=001 smsslp=sccm/mp:sccm
Or:ccmsetup.exe smssitecode=001 smsmp=sccm.jinzhizun.cn dnssuffix=jinzhizun.cn
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/5B/8E/wKioL1UL9VOxetnbAACIUEDwqL4043.jpg "title=" Screenshot2654.jpg "alt=" Wkiol1ul9voxetnbaaciuedwql4043.jpg "/>
5, start the installation program can be seen in the process of the PC Ccmsetup.exe process, when the process disappears open Control Panel can see the CM client, open the client can see the management point and site configuration information.
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/5B/8E/wKioL1UL96jBv0lvAADn1R7AhmU081.jpg "title=" Screenshot2655.jpg "alt=" wkiol1ul96jbv0lvaadn1r7ahmu081.jpg "/> 650" this.width=650; "src=" http://s3.51cto.com/ Wyfs02/m02/5b/94/wkiom1ul9tejt0liaaeorvaclsy108.jpg "title=" screenshot2656.jpg "alt=" Wkiom1ul9tejt0liaaeorvaclsy108.jpg "/>
6. You can see the client that you just installed in the SCCM server device and display it as "WORKGROUP" in the attribute "resource domain or Workgroup".
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M00/5B/8E/wKioL1UL-vfTjF9FAAH8cOkWLvM233.jpg "title=" Screenshot2658.jpg "alt=" Wkiol1ul-vftjf9faah8cokwlvm233.jpg "/>
7. Batch installation method: Put the above command line in a batch file and install the client-side file, and copy it to the PC. For example:
@Echo Off
Echo. Adding the SCCM server to WINS ...
netsh interface ip set wins "Local area Connection" Static 192.168.90.135
Echo. Adding SCCM IP address to Host files ....
Set Hostspath=%windir%\system32\drivers\etc\hosts
echo 192.168.90.135 SCCM01.staff.dir SCCM01 >>%hostspath%
Echo. Enable WMI and File and Print sharing at firewall rules ....
netsh advfirewall firewall set rule group= "File and Printer sharing" new Enable=yes
netsh advfirewall firewall set rule group= "Windows Management Instrumentation (WMI)" new Enable =yes
Echo. Installing SCCM Agent 2012 ... Please wait ...
cd\
c:\SCCM\ccmsetup smssitecode=xx1 smsslp=sccm01/mp:sccm01
· Copy and save it as Auto install Sccm2012.bat and copy into C:\SCCM folder
· Always check the C:\windows\ccmsetup\ccmsetup.log file for the progress.
· Run the machine policy & user policy under Configuration Manager.
· Remember go to SCCM Server to Approve your workgroup computer after run the install.
· To Remote control to your Workgroup computer, remember to add your Workgroup computer IP address into your SCCM Server hos TS file in order for SCCM Server to remote control to workgroup computer. Key in the Administrator ID and password for
Example:-Workgroup computername\administrator and password.
Reference files:
How to Install the SCCM2012 Agent with the System Center Endpoint Client on Workgroup computer
Http://jackychuasce.blogspot.com/2012/05/how-to-install-sccm2012-agent-with_10.html
How to install a client on a Configuration Manager Windows-based computer
https://technet.microsoft.com/zh-cn/library/gg712298.aspx
Workgroup Windows installation Sccm2012client
http://jif521.blog.51cto.com/848361/1605074
SCCM2012 Workgroup PC Installation Client issues