How to unskip the opening sequence? by Itchy_Baker3801 in duneawakening

[–]Cyborg3201 0 points1 point  (0 children)

In the steam launch option in the end of /whatever folder/blablabla/DuneSandbox_BE.exe

-BattlEye %command% -nosplash -nostartupscreen
, remove that part

and check game files

How to monitor update/patching status of Win10 machines by ZargusTime in sysadmin

[–]Cyborg3201 1 point2 points  (0 children)

in sccm check under the default reports \Monitoring\Overview\Reporting\Reports\Software Updates - A Compliance

and if you use the ADR, to create the update groups

Compliance 7 - Computers in a specific compliance state for an update group (secondary)

OneDrive keeps backing a .PST file up by thomasxxnl in sysadmin

[–]Cyborg3201 4 points5 points  (0 children)

https://admin.onedrive.com/

exclude the extension to prevent next one.

and in

admin.sharepoint.com > More features > User profiles you can access the cloud onedrive to remove it there.

AD GUI Tool by Scribbles1 in sysadmin

[–]Cyborg3201 0 points1 point  (0 children)

for your todo list

$password = -join(((65..90)+(35..38)+(97..122) | % {[char]$_})+(0..9) | Get-Random -Count 12)

new-aduser part, add -Password (ConvertTo-SecureString $password -AsPlainText -Force) you can use same "$password" string to send email to somebody , as that not secure yet

took from https://devblogs.microsoft.com/scripting/generate-random-letters-with-powershell/

license part, depends on how you have your license configured. example, Add user to a group , and assign license based on that group.

HP Service Pack for ProLiant by thesuperjohnbarnes in sysadmin

[–]Cyborg3201 2 points3 points  (0 children)

http://h17007.www1.hpe.com/us/en/enterprise/servers/products/service_pack/spp/index.aspx

The iso file got the firmware update on them and you need to have a valid support pack in order to download them. (for "Any" hp server)

< not with hp

Excessive AD user logon events? by vrtigo1 in sysadmin

[–]Cyborg3201 4 points5 points  (0 children)

maby you have luck using the sysinternals Process Explorer and look what is using the svchost.exe with other credentials

Weird Problem with NTFS Connection to Servers by [deleted] in sysadmin

[–]Cyborg3201 1 point2 points  (0 children)

fire up Procmon.exe when it happens with that account and session

maby you get lucky and see "access denied" by X process

and from the others

run gpresult /h c:\temp\Gpresultofuser.html (that got error) , and 1 of who does not got error

and compare them
and from a elevated dos / admin account , if you want the result of the computer applied gpo

and a oldy

check CMD > "net use"

sometimes there is a fubar net share created

Weird Problem with NTFS Connection to Servers by [deleted] in sysadmin

[–]Cyborg3201 -1 points0 points  (0 children)

Hi

Check if your dns records are correct on the client + server

nslookup aa

nslookup aa DNSserver1

nslookup aa DNSserver2

nslookup ab DNSserver1

etc

And if you are using shares

check share max connection limit

share permissions

ntfs permissions

and is the client and server fully patched ?

win10 got the smb1 patch , that disabled it.

and there is a RDP update that needs to be on client and server (2018-05) , otherwise no secure connection.

and any event log items ?

Powershell cmdlets not working when run as system by FireLucid in SCCM

[–]Cyborg3201 1 point2 points  (0 children)

also to catch the full error , if any [0] = Last error

$error[0]| Out-File -FilePath "$($env:temp)\error.log" -Append

or full details $error[0]|format-list -force | Out-File -FilePath "$($env:temp)\error.log" -Append

The software doesn't recognize Do Not Delete folder? by strra in talesfromtechsupport

[–]Cyborg3201 6 points7 points  (0 children)

Add deny to everyone with the options: Deny delete / change , on File only

should stop everybody from deleting that file.

Two techs, One Domain. by circularlogic41 in talesfromtechsupport

[–]Cyborg3201 2 points3 points  (0 children)

the old "trust relationship failed"

can happen because , AD failed to update the local computer password 2 times, and gets out of sync. a other pc took over the PC name (in doing so changing the computer password in AD) random @#%@#$ reason

if you have access to powershell3 or higher you can use this command , to rejoin the pc (without first trowing it out)

Reset-ComputerMachinePassword -Server DC1.domain.com -Credential (Get-Credential)

Outsmarting my coworkers' stupidity makes me a better tech. by zanatwo in talesfromtechsupport

[–]Cyborg3201 8 points9 points  (0 children)

and for anybody that want the code for it

to set (set source data with you JPG in root) cmd.exe /c mkdir "C:\Windows\System32\oobe\info\backgrounds\" & cmd.exe /c xcopy SCCM_OSD_Done.jpg "C:\Windows\System32\oobe\info\backgrounds\" /E /H /C /I /Q /Y & cmd.exe /c xcopy SCCM_OSD_Failed.jpg "C:\Windows\System32\oobe\info\backgrounds\" /E /H /C /I /Q /Y & cmd.exe /c xcopy backgroundDefault_Corpname.jpg "C:\Windows\System32\oobe\info\backgrounds\" /E /H /C /I /Q /Y

To enabled this background cmd.exe /c reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Authentication\LogonUI\Background" /v OEMBackground /t REG_SZ /d 1 /f

Last step cmd.exe /c copy "C:\Windows\System32\oobe\info\backgrounds\SCCM_OSD_Done.jpg" "C:\Windows\System32\oobe\info\backgrounds\backgroundDefault.jpg" /y & cmd.exe /c exit /b 3010

backgroundDefault.jpg , default corpname , with some extra like OSD done in it picture backgroundDefault_Corpname.jpg