The search returned 1 result

by vgrafte
January 15, 2025 - 3:23 PM
Forum: WAPT Packages
Subject: [SOLVED] Copying desktop shortcuts for logged-in users
Answers: 1
Views : 2610

[SOLVED] Copy desktop shortcuts for logged-in users

Hello,

I created a package to paste links onto the desktop. Here is the script:

# -*- coding: utf-8 -*-
from setuphelpers import *

import os
import glob

def session_setup():
username=os.getlogin()
def install():
path = (r'C:\Users\{}\Desktop'.format(username))
filecopyto(lnk, path ...