Jump to content


anyweb

Root Admin
  • Posts

    9203
  • Joined

  • Last visited

  • Days Won

    367

Everything posted by anyweb

  1. first things first, why are you deploying Windows 7, it goes end of life January 14th, 2010, so in a couple of weeks. Secondly i've no idea what your actual problem is, I can't read Chinese.. can you try translating your issue first in google translate and post it here ?
  2. sure post your updated code here
  3. why are you still using and even considering moving SCCM 2012 SP2 into Azure ? this version of ConfigMgr is out of mainstream support and is on extended support currently. https://support.microsoft.com/en-us/lifecycle/search/1060 if you want to use ConfigMgr in Azure then you'll need to be on a Current Branch release see - https://docs.microsoft.com/en-us/configmgr/core/understand/configuration-manager-on-azure
  4. can you give some details of what you were doing here exactly and what type of drive D:\ is ?
  5. you also need to remove any encryption on those devices before implementing BitLocker.
  6. iphelpers should point to where you intend to PXE boot from, so from the local (nearest) distribution point hosting a WDS role
  7. well you cannot have two different disk encryption methods at the same time so if you want to move to BitLocker (good choice) then you'll first need to completely remove whatever encryption that McAfee has put in place. Once that is done and the McAfee agent is removed you can enforce BitLocker easily with Configuration Manager, check out my blog post here for guidance. https://www.niallbrady.com/2019/11/13/want-to-learn-about-mbam-integrated-with-microsoft-endpoint-manager-configuration-manager/
  8. check the username/password specified in sql, that's where it's failing, see below snippet... ERROR: Failed to restore databases. $$<Configuration Manager Setup><12-13-2019 14:41:31.500+00><thread=3800 (0xED8)> *** [28000][18456][Microsoft][SQL Server Native Client 11.0][SQL Server]Login failed for user 'sitename\user'. cheers niall
  9. thanks I appreciate the kind words i'm not sure. i'm doing a bunch of videos currently on MBAM in SCCM 1910 CB and that's getting all my focus, but i will get to part 8, eventually
  10. But I can’t get to the web interface for /Reports in the start menu locate the SSRS Report Server Configuration Manager, and run it, you need to configure the Reports url in there and click apply.
  11. no worries, before you ran the script did you confirm that SSRS was configured and working and that reports work in your console ? if not, go ahead and fix reporting, then re-run the script
  12. hiya i didn't see that problem (see part 2 of my videos here) https://www.niallbrady.com/2019/12/10/learn-about-mbam-integration-in-microsoft-endpoint-configuration-manager-version-1910-part-2-configure-portals/ however i have one lab with the cert issue you reported on technet and your workaround didn't work for me, fyi cheers niall
  13. thanks! yes you could check for the ip range that your network cables use (as opposed to wireless), and detect based on that, all networks are different so you'll have to customize it somehow to suit your environment cheers niall
  14. thanks for the thanks,. first thing though, is your 1910 lab in HTTPS mode ? if not you cannot use MBAM integration, it must be in HTTPS mode. if you need help with https mode see the following links, i converted one of my labs from http to https yesterday using these guides, it's not that hard if you pay attention to the guides: *to learn how to setup PKI and convert MEM CM from HTTP to HTTPS see https://windows-noob.com/forums/topic/16252-how-can-i-configure-pki-in-a-lab-on-windows-server-2016-part-1/ and then once complete, do this https://windows-noob.com/forums/topic/16300-how-can-i-configure-system-center-configuration-manager-in-https-mode-pki-part-1/
  15. This Holiday Season, Altaro is helping you out with your Holiday Shopping: they’re giving you the chance to WIN fantastic gifts that you can give to your loved ones! It’s no secret that Holiday shopping can be stressful and very time-consuming. So this year, whether you need a present for your partner, your children, your parents and in-laws, or your friends… Altaro’s got your back. Enter and share it on socials for a chance to WIN one of the Grand Prizes: a Holy Stone GPS FPV RC Drone HS100, an All-Access MasterClass pass, Lomography Lomo’Instant San Sebastian, an Echo Plus (Smart Home Hub), a Wii Console &amp; Mario Kart for Wii, 2x Netflix Gift Cards of $100 each, and a JBL Clip Portable Waterproof Speaker. And guess what? For any eligible subscription they give you a guaranteed Amazon voucher! So, if you are a Hyper-V or VMware user, download Altaro’s VM Backup and follow the instructions you will find over here to WIN these exciting prizes! Good luck &amp; Happy Holidays!
  16. yes of course it's possible, and you've already figured it out
  17. it looks like it's failing on the SCCM pre req files, i'm guessing the files it's downloaded are 0 bytes in size, can you check ? as it is the pre-reqs that are failing, can you delete them, and run the script again to download the pre-reqs, here it is.. <# # Download SCCM prerequisite files, 2019/4/23 Niall Brady, https://www.windows-noob.com # # This script: Downloads SCCM prerequisite files # Before running: Extract the SCCM Current Branch baseline version ISO to the $SCCMPath folder, eg: C:\Source\SCCM1902. Edit the variables as necessary (lines 17-19). # Usage: Run this script on the ConfigMgr Primary Server as a user with local Administrative permissions on the server #> If (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(` [Security.Principal.WindowsBuiltInRole] “Administrator”)) { Write-Warning “You do not have Administrator rights to run this script!`nPlease re-run this script as an Administrator!” Break } # below variables are customizable $SourcePath = "C:\Source" # where is the media ? $SCCMPath = "C:\Source\SCCM1902" $PrerequisitesPath = "$SourcePath" + "\SCCMPrereqs" # please don't edit below this line write-host "Starting SCCM prerequisites download script..." write-host "" # Check for SCCM source files write-host "Checking for ConfigMgr media in $SCCMPath..." -nonewline if (Test-Path "$SCCMPath\SMSSETUP"){ Write-Host "done!" -ForegroundColor Green } else { write-host "Error" -ForegroundColor Red write-host "Please extract the SCCM media to '$SCCMPath' and then try running this script again..." break} write-host "Checking for'$PrerequisitesPath' folder..." -nonewline # Check for prerequisites download path folder, if not present create it if (Test-Path "$PrerequisitesPath"){ Write-Host "done!" -ForegroundColor Green #write-host "The folder '$PrerequisitesPath' already exists, therefore this script will not download the prerequisites." } else { mkdir "$PrerequisitesPath" | out-null Write-Host "done!" -ForegroundColor Green # start the SCCM prerequisite downloader write-host "Downloading SCCM version prerequisite files..." -nonewline $filepath = "$SCCMPath\SMSSETUP\bin\X64\SETUPDL.exe" # remove /NoUI if you want to see the download progress UI $Parms = "/NoUI `"$PrerequisitesPath`"" $Prms = $Parms.Split(" ") Try {& "$filepath" $Prms | Out-Null} catch {Write-Host "error!" -ForegroundColor red break} Write-Host "done!" -ForegroundColor Green }
×
×
  • 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.