How can I create a package that adds a list of shortcuts inside "quick access"?
I would like to send the network addresses of surrounding workstations to it for sharing. For example:
- Quick access
- \\192.168.31.1
- \\192.168.31.2
- \\192.168.31.3
- etc.
Code: Select all
# -*- coding: utf-8 -*-
from setuphelpers import *
uninstallkey = []
def install():
print('Rien à faire en install')
def session_setup():
run_powershell(r'(new-object -com shell.application).Namespace("\\192.168.31.1").Self.InvokeVerb("pintohome")')While not directly related to your problem, I would add that it's preferable to use DNS names instead of IP addresses; otherwise, the workstations will use NTLM authentication instead of strong Kerberos authenticationnixxax wrote: ↑September 3, 2019 - 9:05 AM Good morning,
How can I create a package that adds a list of shortcuts inside "quick access"?
I would like to send the network addresses of surrounding workstations to it for sharing. For example:
- Quick access
- \\192.168.31.1
- \\192.168.31.2
- \\192.168.31.3
- etc.