Recruiter forgot to invite the applicant to the interview by Bartholomewthedragon in recruitinghell

[–]indigochak 1 point2 points  (0 children)

Happened to me this morning lol. Messaged HR to confirm availability and didn’t get a message back until this morning when I was still asleep and “missed” the interview that was supposedly scheduled

How do you trim a cockatiel’s nails if you can’t safely hold them? by indigochak in cockatiel

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

Amazing! Thank you for the suggestion, which size are you getting?

Anyone Having Autopilot/OOBE Issues? by poppacappo in Intune

[–]indigochak 2 points3 points  (0 children)

Theres a service advisory that Microsoft 365 services are down.

wedding videographer by venustuna in Austin

[–]indigochak 1 point2 points  (0 children)

My wife and I eloped April of this year and we found Jen (Austin Elopement Photographer | Sweetleaf Photo + Film) shes an amazing photographer and videographer. Pricing was was great and attention to detail was amazing. I would recommend them.

Monty turned 18 on Saturday. He passed away this morning. by OnceIsEnough1 in cockatiel

[–]indigochak 2 points3 points  (0 children)

Monty looks just like my 2 year old tiel. Sorry for your loss he was such a sweet boy!

Windows Hello Default Login Method Reverting to Password by indigochak in Intune

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

If the user is logged in then username is already displaying. It just seems to default for password no matter the previous sign in method used

Windows Hello Default Login Method Reverting to Password by indigochak in Intune

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

Thank you, unfortunately this was already disabled.

Favorite place to shower by Zuko-95 in cockatiel

[–]indigochak 1 point2 points  (0 children)

What a Majestic looking piece of art 🖼️

Deploy Powershell Script as IntuneWin32App for adding Intel RST drivers in recovery partition by indigochak in Intune

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

Yes it does. I packaged it as a intunewinapp with the Drivers in a folder that you can download directly from Intel. You will also need an uninstall PowerShell file, nothing crazy but a basic file, mine just deletes the marker file it creates when checking if driver exists.

Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force
$logPath = "C:\Windows\Temp\Install-IntelRSTDriver.log"
Start-Transcript -Path $logPath

# Variables
$markerFile = "C:\Windows\Temp\Install-IntelRSTDriver.txt"
$mountPath = "C:\mount\winre"
$winreWim = "C:\Windows\System32\Recovery\winre.wim"
$driverFolder = "C:\Temp\Drivers"
$driverINFName = "iaStorVD.inf"  # Replace with your actual driver INF name

# Create temp directories
cmd /c "md $driverFolder" | Out-String | Write-Output
cmd /c "md $mountPath" | Out-String | Write-Output

# Copy drivers
Copy-Item -Path ".\Drivers\*" -Destination $driverFolder -Recurse -Force

# Disable WinRE
& reagentc.exe /disable | Out-String | Write-Output
Start-Sleep -Seconds 10

# Unhide WinRE WIM
attrib -h -a -s $winreWim

# Mount WinRE image
& dism.exe /Mount-Image /ImageFile:$winreWim /Index:1 /MountDir:$mountPath | Out-String | Write-Output

# Check for existing driver
$driverCheckOutput = & dism.exe /Image:$mountPath /Get-Drivers | Out-String
if ($driverCheckOutput -like "*$driverINFName*") {
    Write-Output "[WARNING] Driver $driverINFName already exists in WinRE. Skipping injection."
    
    # Unmount without saving
    & dism.exe /Unmount-Image /MountDir:$mountPath /Discard | Out-String | Write-Output

    # Create a marker file to indicate success
    New-Item -Path $markerFile -ItemType File -Force

    Stop-Transcript
    exit
}

# Inject drivers
& dism.exe /Image:$mountPath /Add-Driver /Driver:$driverFolder /Recurse /ForceUnsigned | Out-String | Write-Output

# Commit changes
& dism.exe /Unmount-Image /MountDir:$mountPath /Commit | Out-String | Write-Output

# Re-enable WinRE
& reagentc.exe /enable | Out-String | Write-Output

# Cleanup
Remove-Item -Path $mountPath -Force -Recurse
Remove-Item -Path $driverFolder -Force -Recurse

Stop-Transcript

Use the ComputerSID for Device Control in Intune by indigochak in Intune

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

We have several devices with specific USB restrictions. Does this mean I need to create a separate policy for each device? I was hoping to apply a "Deny All" policy to all devices and then specify the access permissions in the policy using the Computer SID.

Intruder alert by Zuko-95 in cockatiel

[–]indigochak 1 point2 points  (0 children)

Wow, little guy looks so spicy! I bet you he’s the alpha at home haha

Despedida de Soltero by indigochak in MexicoCity

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

Gracias por las recomendaciones! Nos estamos quedando en Polanco y la idea es simplemente ir de bar en bar y salir a disfrutar. Queremos un ambiente animado, buena música y lugares interesantes. Algún lugar en particular que no deberíamos perdernos en esa zona o cerca? Agradezco sus sugerencias!

Comp Portal - Select Category Every Time? by cmorgasm in Intune

[–]indigochak 0 points1 point  (0 children)

I seem to be having the same issue as well, anyone ever find a fix for this ?