Can I Change the IntuneWin File Name in Intune Portal Using Graph?

0
0
Asked By CuriousCoder92 On

Hey everyone! I'm trying to figure out if there's a way to change the name of an IntuneWin file for a Win32 app in the Intune Portal using Graph API. I've previously asked about this topic but not in detail. I can successfully update an IntuneWin file with Graph, but the filename in the portal remains the same. For example, before the update, it displays [7-Zip23_Frv1_2025-08-04_1636.intunewin](https://intune.microsoft.com/#) and still shows that after the update. Since the content version increases and I don't get any errors in my script, I believe it's working correctly. Any insights would be appreciated! Thanks!

2 Answers

Answered By PowerShellGuru88 On

You're essentially using the Graph API in the background when uploading a package through the GUI. A good way to figure out the exact process is by using the browser's developer tools to watch the network requests when you perform the upload in the GUI. You can mimic that request in PowerShell afterward. If you're interested, ChatGPT might help with the scripting. Good luck!

UserFriendly -

I did chat with both ChatGPT and Copilot, and they confirmed that it can't be done through Graph. You can change it using the GUI, but not with Graph. That's why I wanted to double-check here!

Answered By TechWhizKid On

From what I know, you can't change the name directly through Graph API. The IntuneWin file name is fixed when you create or update the Win32 app. If you want to see a different name displayed, you'll have to upload a new file with the desired name instead.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.