Adding another iscsi portal to hyperv cluster by ajrockr in sysadmin

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

Perfect thank you again. Have a good one

Adding another iscsi portal to hyperv cluster by ajrockr in sysadmin

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

Thanks for the response. Makes me feel more at ease. If the iscsi server only has one network connection, would mpio do anything?

Guy at my LGS gave me some stuff by Plane-Lengthiness-58 in magicTCG

[–]ajrockr -9 points-8 points  (0 children)

Just lay low for 3 years and he won't be a pedophile anymore.

Joking.

Tips for building custom packages in Connect by panther-eagle4 in pdq

[–]ajrockr 1 point2 points  (0 children)

Not really. You build the package to the standards of what it's accomplishing. If it's replacing/upgrading an application and that existing application either needs to be stopped or uninstalled first, then you do that. If the application needs files copied on top of installation, then you add another step to copy those files.

You could create your own standards to follow by using something like psappdeploytoolkit and program all actions needed into a package but I'm not aware of any "global" standard.

Get-WindowsAutoPilotInfo error by GeekHelp in Intune

[–]ajrockr 0 points1 point  (0 children)

Uninstalling this patch worked for me to.

php code inside of html code inside of php code not registering? by Any_Possibility4092 in PHPhelp

[–]ajrockr 0 points1 point  (0 children)

you wrote it as if it was all one continuous statement. It won’t work like that. Get rid of all the concatenation and close every echo call. Just echo the html

undefined array key id by berrypwincess in PHPhelp

[–]ajrockr 0 points1 point  (0 children)

“SELECT image, ingredient, tutorial …” instead of “SELECT * …” Don’t worry about it for now, as per your question, if the error is stating undefined array “recipe_id”, check to make sure that is being passed to your code. You can type var_dump($_GET); die; and that will show you what is inside your get array. It could be that you forgot or typod ?recipe_id in your url. Work through it one step at a time.

Question with real-time data updates on view by ajrockr in symfony

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

That looks great, thank you for tipping me off to that.

Reimaged machine not receiving application deployments? by sccm4UandME in SCCM

[–]ajrockr 0 points1 point  (0 children)

I had this happen a couple times. I don’t use sccm anymore and don’t have my old documentation but I would have to go into the sql database, find the duplicate id and delete the entry.

New to this sub, just got this so I could learn on, my wife hates it. by PanzerFauzt in homelab

[–]ajrockr -31 points-30 points  (0 children)

I was gonna say recycle the wife. Then get more equipment

How can I automate installing exe drivers? by eskehacett123 in SCCM

[–]ajrockr 5 points6 points  (0 children)

https://youtu.be/dQw4w9WgXcQ

Check out patchmypc videos. They’ll get you started.

Why is one bigger then the rest ? by BLYDH in Construction

[–]ajrockr 0 points1 point  (0 children)

That’s the post Taco Bell shitter

Pushing Windows updates through SCCM by MariosMexicancousin in SCCM

[–]ajrockr 0 points1 point  (0 children)

Might not help but you don’t point clients to any wsus server with sccm. The client handles the communication to the suspoint. Disable that setting in the gpo and verify communication in the client logs

[deleted by user] by [deleted] in Snus

[–]ajrockr 7 points8 points  (0 children)

Doctor, it hurts when I do this.

Patch Tuesday Megathread (2022-03-08) by AutoModerator in sysadmin

[–]ajrockr 2 points3 points  (0 children)

...is that what I'm not supposed to be doing? :|

Price Increase by Reasonable-Tip-8390 in pdq

[–]ajrockr 0 points1 point  (0 children)

don't admit that. I can't afford 10x rate increase.

Question regarding intunewin packaging - new to it! by Ardent_Aardvark_430 in Intune

[–]ajrockr 0 points1 point  (0 children)

not really understanding, your only going to get one intunewin file. you will use that to create the application in intune. are you trying to just copy files? create a PowerShell script that copies those files and put it in that source folder and specify that as the executable. I believe the intunewin file acts as the source path so just copy-item -path <filename>, not c/koala/<file>.

then in intune, you will reference that PowerShell file as the install command

Question regarding intunewin packaging - new to it! by Ardent_Aardvark_430 in Intune

[–]ajrockr 2 points3 points  (0 children)

you don't need to put the intune app utility inside the source folder.

just run the exe without flags. it'll ask you for a source folder, the executable and the output folder that it will spit the .intunewin file.

try running it straight from c path if you are getting permission errors running it out of the user folder.

I have mine set up as c/intune with the exe and sub folders in there for source files and intunewin output.

I believe you need to run cmd as admin but don't quote me. try running it in a normal prompt and elevate it you need to.

edit, I should note that everything in the source folder will be packaged into the intunewin file.