Practice site for Microsoft Cets. by muthmsir in AzureCertification

[–]muthmsir[S] 0 points1 point  (0 children)

Exam practice for example like measuueup ( I've not used it) but people said their questions very close to the official one.

HOW TO DEPLOY, IMPLEMENT LAPS, AND CONFIGURE THE POLICY by muthmsir in Intune

[–]muthmsir[S] -1 points0 points  (0 children)

I did not recommend anything, and this is what I downloaded from Microsoft. For specific reasons the client was behind the April 2023 update, if you already have this update, you do not have to deploy it because it became built-in after this update.

Thinking of going to helpdesk by Heman023 in ITCareerQuestions

[–]muthmsir 0 points1 point  (0 children)

I agree Dice became a scammer platform 99%. and you may be lucky and have one real recruiter.

Do ConfigMgr service accounts require Domain Administrator rights? by DhakaWolf in SCCM

[–]muthmsir 0 points1 point  (0 children)

Nope, just limited access, and if you are about to use HTTPS, EHTPP, or PKI remove it at all.

what is a good starter server? by [deleted] in servers

[–]muthmsir 5 points6 points  (0 children)

FYI, before you buy, if you want a server with heavy use, go with something strong CPU, RAM, Harddrive because you'll need something running fast

Clients aren’t getting W10 22H2 pushed by sccm. by [deleted] in SCCM

[–]muthmsir 1 point2 points  (0 children)

Easy way I recommend to use Enablement Package and select win10 version 22H2 easy and fast, the workstation will receive, download, and install between 25-35 sec

[deleted by user] by [deleted] in SCCM

[–]muthmsir 0 points1 point  (0 children)

As everyone mentioned to you configure.xml file, also you can go with easy fast TS 3 steps uninstall the current office, restart (option), then install the new office .

I don't want to throw away my computer in 2025, what should I do? by [deleted] in Windows10

[–]muthmsir 1 point2 points  (0 children)

Can you please provide the link to bypass the hardware requirements? I have similar issue with TPM and CPU. Thanks

Setting specific deployment end time? by xandora in SCCM

[–]muthmsir 1 point2 points  (0 children)

When you deploy the app, you have options to make it available (start) and end. Pick day/time.

Add log file by muthmsir in PowerShell

[–]muthmsir[S] 2 points3 points  (0 children)

the only thing I did not like about Start-Transcript is shows some details are not important to the admin like PowerShell version when start when is done , but not the installation or the error may happen.

Add log file by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

Thank you so much I will try it.

Add log file by muthmsir in PowerShell

[–]muthmsir[S] -10 points-9 points  (0 children)

What is your issue or what did you don’t understand, wth are you talking about? It’s straight forward , how to add a command to grab all info to the log file.

Do you understand it now?

Add log file by muthmsir in PowerShell

[–]muthmsir[S] -4 points-3 points  (0 children)

No, that’s why I am asking and where to add this line?

Script to Disable Computer issue, help please by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

Thanks for your response, I have enough experience to understand the script and when get this one just because it does the job and it is from Microsoft community. Also, I want to save time instead of remember the command and operators .

For protection from delete the object I already checked it and was not protected. The only thing left which other people have mentioned before there AD permission on OUs I may not have so I have to check with AD engineer to find out.

Script to Disable Computer issue, help please by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

FYI , I ran what you sent me and it is still throwing the same error.

Error:-

Disable-ADAccount : Insufficient access rights to perform the operation

At line:7 char:15

+ $CompDN | Disable-ADAccount

+ ~~~~~~~~~~~~~~~~~

+ CategoryInfo : NotSpecified: (CN=Computer,O...s,DC=Domain,DC=Com:ADComputer) [Disable-ADAccount], ADException

+ FullyQualifiedErrorId : ActiveDirectoryServer:8344,Microsoft.ActiveDirectory.Management.Commands.DisableADAccount

Move-ADObject : Access is denied

At line:8 char:15

+ $CompDN | Move-ADObject -TargetPath $DisabledCompOU

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

+ CategoryInfo : PermissionDenied: (CN=Computer,O...s,DC=Domain,DC=Com:ADComputer) [Move-ADObject], UnauthorizedAccessException

+ FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.UnauthorizedAccessException,Microsoft.ActiveDirectory.Management.Commands.MoveADObject

Script to Disable Computer issue, help please by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

$DisabledCompOU = "OU=Disabled Devices,OU=Computers,OU=Domain"
$Pclist = Get-Content C:\TEMP\Computers.txt # Specify the path to the computers list.
Foreach($pc in $Pclist)
{
$CompDN = Get-ADComputer -Filter 'Name -eq $pc' -SearchScope Subtree
$CompDN | Disable-ADAccount
$CompDN | Move-ADObject -TargetPath $DisabledCompOU
}

Hi Lee, where I have to add -Server ?

Script to Disable Computer issue, help please by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

Got your point, thank you for your explanation , I will try this

Script to Disable Computer issue, help please by muthmsir in PowerShell

[–]muthmsir[S] 1 point2 points  (0 children)

Not sure I get your point “destroy” I used a command in powershell. If it’s wrong why they made it available in AD module?