-
Posts
9182 -
Joined
-
Last visited
-
Days Won
366
Everything posted by anyweb
-
First of all I'd backup your SQL server db's, then move SQL server to it's own dedicated drives, one for SQL DB and another for SQL logs, once done you can try the advice here https://stackoverflow.com/questions/829542/how-do-i-decrease-the-size-of-my-sql-server-log-file
-
[H] SCCM and OS Deployment
anyweb replied to Joe13's topic in System Center Configuration Manager (Current Branch)
there's some info about iphelpers here -
[H] SCCM and OS Deployment
anyweb replied to Joe13's topic in System Center Configuration Manager (Current Branch)
Configuring DHCP should not be necessary, but for UEFI boot where switches are involved using IPHelpers is recommended. Talk to your network guys for help with that. when you PXE boot the client computer (test with virtual machines, eg: hyperv, it's best) then what exactly do you see ? is there any error, if so what ? -
[H] SCCM and OS Deployment
anyweb replied to Joe13's topic in System Center Configuration Manager (Current Branch)
ok one step at a time, what do you see when you try to PXE boot the computer, and are you testing this in a lab or in production ? did you update the boot images to the dp ? did you enable them for PXE ? -
your query is incorrect SELECT * FROM Win32_ComputerSystem WHERE Model LIKE “HP Compaq 8200 Elite SFF PC” try replacing it with this instead SELECT * FROM Win32_ComputerSystem WHERE Model LIKE "HP Compaq 8200 Elite SFF PC" also, are you sure that the computer model is indeed HP Compaq 8200 Elite SFF PC ?
-
hi can you post the logs from C:\Programdata\ so i can take a look ?
- 242 replies
-
- 1702
- forced upgrade
-
(and 2 more)
Tagged with:
-
AD integrated bitlocker
anyweb replied to Kevin79's topic in System Center Configuration Manager (Current Branch)
technically i'm sure it's possible but you'd have to script something to make the call to AD and then pull the relevant data. -
best of luck with it Thomas, i know it's complex to setup, but once you have it all working in a lab it's worth it !
-
hi Thomas, i guess you missed the start of the blog post ? here it is again...I've also added a hard link to part 5 at the end of this blog post, thanks This series is comprised of different parts, listed below. Part 1 - Introduction and server setup Part 2 - Install and do initial configuration on the Standalone Offline Root CA Part 3 - Prepare the HTTP Web server for CDP and AIA Publication Part 4 - Post configuration on the Standalone Offline Root CA (this part) Part 5 - Installing the Enterprise Issuing CA Part 6 - Perform post installation tasks on the Issuing CA Part 7 - Install and configure the OCSP Responder role service Part 8 - Configure AutoEnroll and Verify PKI health
-
can you do a teamviewer session so i can take a look ?
- 19 replies
-
- powershell
- current branch
-
(and 2 more)
Tagged with:
-
can you post the error if you have it please
- 19 replies
-
- powershell
- current branch
-
(and 2 more)
Tagged with:
-
hi at the bottom of each post it links to the next in the series. Did you miss that ? fyi, all the Current Branch content I've written is listed here in chronological order https://www.windows-noob.com/forums/topic/13288-step-by-step-guides-system-center-configuration-manager-current-branch-and-technical-preview/ here are the 4 parts of this series How can I install System Center Configuration Manager (Current Branch) version 1802 on Windows Server 2016 with SQL Server 2017 – Part 1 How can I install System Center Configuration Manager (Current Branch) version 1802 on Windows Server 2016 with SQL Server 2017 – Part 2 How can I install System Center Configuration Manager (Current Branch) version 1802 on Windows Server 2016 with SQL Server 2017 – Part 3 How can I install System Center Configuration Manager (Current Branch) version 1802 on Windows Server 2016 with SQL Server 2017 – Part 4 I will edit the posts to link to all 4 parts.
- 20 replies
-
- sql server 2017
- powershell
-
(and 3 more)
Tagged with:
-
here's one way of doing it for users, you could easily modify the PowerShell script to take the two parameters so it's a one step process instead of 3, i just haven't had time yet to modify it. Note: You will need to define the TargetUser in the task sequence using whatever method you want as the script checks for that in the following line: $strName = $tsenv.Value("targetuser") Step 1. Set TargetADSG set the target Active Directory Security Group you want to test if the user is present in step 2. Set a custom variable for that Step 3. call the powershell script (uses ServiceUI.exe from the MDT Toolkit, use the correct architecture for the version of Windows you are deploying) ServiceUI.exe -process:TSProgressUI.exe %SYSTEMROOT%\Sysnative\WindowsPowerShell\v1.0\powershell.exe -windowstyle hidden -NoProfile -ExecutionPolicy bypass -File IsUserinADSG.ps1 Step 4, Run the Group to install software if the CustomVar set earlier is true here's the powershell script I used IsUserinADSG.ps1