Forum Discussion

AB21805's avatar
AB21805
Bronze Contributor
Jul 12, 2021

moving two files to a folder in program files

Hi all, 

 

I have an application that needs to be rolled out which requires to have these two files which are a ID file and a key File moved into a folder in program files after the install. How would I get these 2 files into the correct folder in program files once the application is installed? 

 

Please help!

  • Hi
    The first option it to create one win32app / intunewin to install and copy the files the second option would be to create a simple win32 app to copy the 2 files with a powershell script (which is also included in option 1)

    *You can add the installation file to a folder.
    *Add to two files also to that folder
    *Add a powershell script to it, which calls up on the setup to install the program
    *Add a simply copy .\install.key c:\program files\folder\install.key
    *add a simple copy .\install.id c:\program files\folder\install.id
    *Convert the folder/set to a win32 setup file
    *Upload it to intune and specify the detection rule (c:\program files\appfolder)
  • Hi
    The first option it to create one win32app / intunewin to install and copy the files the second option would be to create a simple win32 app to copy the 2 files with a powershell script (which is also included in option 1)

    *You can add the installation file to a folder.
    *Add to two files also to that folder
    *Add a powershell script to it, which calls up on the setup to install the program
    *Add a simply copy .\install.key c:\program files\folder\install.key
    *add a simple copy .\install.id c:\program files\folder\install.id
    *Convert the folder/set to a win32 setup file
    *Upload it to intune and specify the detection rule (c:\program files\appfolder)

Resources