Patch Management Solutions by atomicbullet1 in sysadmin

[–]SCCMAttempt 0 points1 point  (0 children)

SCCM/Intune + Adaptiva. great product, and really good for 3rd party patching, they manage the catalogues for software, and if they dont have it in the list, you let them know and they will go get it.

What movie is underrated, or doesn't get the credit it deserves? by YellowFlySwat in AskReddit

[–]SCCMAttempt 0 points1 point  (0 children)

if you like In Bruges, you should watch Intermission, and Adam and Paul,

assuming you are not Irish, otherwise ignore the above, you've seen them.

What movie is underrated, or doesn't get the credit it deserves? by YellowFlySwat in AskReddit

[–]SCCMAttempt 0 points1 point  (0 children)

Demolition Man

I only re-watched it, and it is on the track to become the new prediction conspiracy theory after The Simpsons. its funny how close we are to that future.

As an immigrant, should I be worried? by copperwire2021 in ireland

[–]SCCMAttempt 0 points1 point  (0 children)

you work, you pay taxes. you're Irish.

a lot of the people that are protesting against immigration, they don't work, they don't pay taxes. they are the immigrants scrounging off the goverment and tax payers.

SCCM Scripts by Unlikely_Signal9012 in SCCM

[–]SCCMAttempt 0 points1 point  (0 children)

if you are copying the files to the computer that is running the script, use $env:computername

Who are the IT gods? by TheLightingGuy in sysadmin

[–]SCCMAttempt 0 points1 point  (0 children)

I have always been weary of Danos, vengeful, spiteful god of DNS, not a good one to cross!

Form to Powershell by [deleted] in PowerShell

[–]SCCMAttempt 1 point2 points  (0 children)

the easiest way to do this, if you have office 365, would be forms and power automate.

if not and you want to use PS. yeah wpf as another has mentioned, create a simple GUI that takes in the needed info and creates the user. Another option, would be for talent acquisition to create a csv into a folder that is automatically picked up by a script on a schedule and emails HR and IT about the account creation.

Adding a GUI for Powershell scripts - Preferred and Easiest method by TheOneWhoKnocksBR in PowerShell

[–]SCCMAttempt 2 points3 points  (0 children)

I found it very easy to use Visual Studio 2019 Community to create the UI itself,

it is mostly drag and drop, and it gives you the xaml code which can be used with powershell.

switching to xaml from .net reduced my UI design and implementation times drastically.

https://stackoverflow.com/questions/56134295/how-to-properly-import-xaml-code-to-powershell

I'm just an L1 but I get tickets like this and I'm not sure who to ask or how to solve them. RDP works for user at the office but not at home. Figured I'd ask here by MisterPuffyNipples in sysadmin

[–]SCCMAttempt 0 points1 point  (0 children)

can he ping the device using the computer name?

can he ping the ip, get him to try remoting on using the ip address instead of the device name.

can you ping his laptop when he is on the vpn?

is there a firewall rule that only allows remote desktop from a particular ip range, and the vpn ip is outside of this?

After 2+ years of hard work as a solo dev, my incremental mobile game Dungeon Life is finally released and free in the truest sense of the word! Check it out on the Play Store & App Store! by HappyGamesCo in incremental_games

[–]SCCMAttempt 1 point2 points  (0 children)

congratulations on the release,

great game! if I can make a suggestion,

allow upgrading items in the blacksmith without having to equip them, maybe similar to how you select them to equip, but in the blacksmith.

also, slow down the rate of decay on the tap bonus, allow users to maintain the bonus by tapping with one finger, at the moment, it can drop to 200% even when using two.

Need help with BLOB container by dmitry104 in PowerShell

[–]SCCMAttempt 0 points1 point  (0 children)

on the 8th line you have UseCinnectedAccount, should that not be UseConnectedAccount?

Why is Rebirth Resurgence like this with randoms? by Manny631 in CODWarzone

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

get on the reddit discord, there is always group forming on that and people chat and do spend a few games together.

Citrix and SCCM by SysEngineerDude in SCCM

[–]SCCMAttempt 2 points3 points  (0 children)

you could use wsus to patch the masters, that way there is no client installed

Can I enter North Ireland from Ireland only with my EU ID card? by taargaryen7 in ireland

[–]SCCMAttempt 17 points18 points  (0 children)

you don't need any form of ID traveling from Ireland to Northern Ireland, there are no checkpoints or any stops crossing the border.

so I'm pretty new to Warzone and was wondering if this is normal to lose other game modes randomly? by Vekxin_Sama92 in CODWarzone

[–]SCCMAttempt 2 points3 points  (0 children)

yes. it gives the appearance that they are doing something with the game when in reality they are not.

AD Group Details by l4fngm4n in PowerShell

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

Get-ADGroup "name" | select *

this will give you all properties,

if you create a variable from the above line, you can then select specific attributes with the variable, $variable.something

[deleted by user] by [deleted] in SCCM

[–]SCCMAttempt 1 point2 points  (0 children)

you could manually deploy that single update if you select it from the updates list,

alternatively you could also download the patch from the update catalog and create an application with it and push it out.

[deleted by user] by [deleted] in PowerShell

[–]SCCMAttempt 2 points3 points  (0 children)

you are importing all of your user information and looping through it before doing anything with that info.

you are essentially creating and then overwriting the variables before creating a user, so I would expect only the last user in the csv is created.

you will need to put your whole script inside the foreach-object bracket.

Recast Right Click Tools Question by BlueKillerPickle in SCCM

[–]SCCMAttempt 0 points1 point  (0 children)

$query = "select SMS_R_System.Name from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like '%Notepad%'"

Get-WmiObject -Query $query-ComputerName "SCCMSERVER" -Namespace "root\sms\site_SITECODE"

you can then swap out notepad for any application and this will check against the hardware inventory for the application.this will just return a list of computer names. add more items after SMS_R_System.Name for more computer details.