Jump to content

jmig

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by jmig

  1. Disregard. We have a GPO that blocks installs from %AppData% and I did not whitelist Teams. This was causing the installer to default to ProgramData instead.
  2. Could you share the PS script? I've gotten it to install via SCCM, but something is not quite right. It's creating a folder for each user that runs the install in ProgramData (e.g. "C:\ProgramData\username\Microsoft\Teams\..."), instead of installing to LocalAppData – which itself isn't a great location, but let's not go there.
  3. So I've deployed Teams using this method, and have experienced the following issue: deploying from SCCM, Teams installs to "%ProgramData%\%USERNAME%\Microsoft\Teams" instead of "C:\Users\%USERNAME%\AppData\Local\Microsoft\Teams" I know this is related to the application installing as SYSTEM, but I am unsure how to resolve the issue. The deployment is setup for user to manually install from Software Catalog.
  4. Haha. Exactly our confusion.
  5. No, just some issues related to branching to EDU vs the ENT edition via SCCM. Our SCCM admins are only supporting branching for ENT
  6. Hello, we have several devices in our environment on Windows 10 Education and would like to migrate these to Windows 10 Enterprise. Microsoft TechNet alludes to this being possible, but does not have any support documentation on how to do so. Has anyone upgraded (or is it a downgrade?) from EDU to ENT, and if so, what is the process? Edit: I am hoping to avoid wiping and re-imaging. Thanks
  7. Much appreciated! I will give this a try
  8. We have a set of command-line tools (AMPL with additional 'solvers') that we are going to deploy to a couple dozen computers. In order to run these from CMD without typing the full folder path, we need to add their folder path to the PATH Environment Variable in Windows. On our test computer I've create a folder in Program Files named AMPL, which contains the AMPL executable, and each of the additional solver executables are in subfolders within this folder, for example: Program Files > AMPL > xpress Using PowerShell, I am able to add the AMPL folder to PATH. My issue arrises when I try to add one of the subfolders to PATH, the subfolder does not append to the list of path variables, it overwrites the previously added AMPL folder path. Basically, the first part of the script runs, and it adds the AMPL folder to path, with this result: C:\Windows\System32>pathPATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows; ... C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\; [b]C:\Program Files\ampl[/b] As the script continues onto the next folder, it's overwriting the previous: C:\Windows\System32>pathPATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows; ... C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\; [b]C:\Program Files\ampl\cplex[/b] C:\Windows\System32>pathPATH=C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows; ... C:\Program Files (x86)\Windows Kits\8.0\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\; [b]C:\Program Files\ampl\xpress[/b] Here is an example of the crude PowerShell script I'm using (Note: I'm very new to PowerShell, go easy on me) $PATH = [Environment]::GetEnvironmentVariable("PATH") $ampl_path = "C:\Program Files\ampl" if( $PATH -notlike "*"+$ampl_path+"*" ){ [Environment]::SetEnvironmentVariable("PATH", "$PATH;$ampl_path", "Machine") } $cplex_path = "C:\Program Files\ampl\cplex" if( $PATH -notlike "*"+$cplex_path+"*" ){ [Environment]::SetEnvironmentVariable("PATH", "$PATH;$cplex_path", "Machine") } $xpress_path = "C:\Program Files\ampl\xpress" if( $PATH -notlike "*"+$xpress_path+"*" ){ [Environment]::SetEnvironmentVariable("PATH", "$PATH;$xpress_path", "Machine") } Is it possible to add the parent AMPL as well as the subfolders CPLEX and XPRESS to the path? Or should I just use the alternative method of dumping all the executables + associated files for these command line tools in one parent folder?
  9. I probably should have read the GPO description before posting. I believe, but again, correct me if I am wrong, that Windows Feedback Hub and Contact Support cannot be uninstalled by this method?
  10. Correct me if I am wrong, but this is a policy, not a preference, so this would render your users unable to set their own file associations if they wanted? I'm asking because I'm trying to resolve this issue in our computer labs, where we don't mind if the users are unable to change anything. However, we plan to roll out Win 10 to our faculty/staff computers, where we are less restrictive, so this might not work for us in that scenario.
×
×
  • Create New...