Server IP : 85.214.239.14 / Your IP : 3.133.136.95 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/windows/plugins/modules/ |
Upload File : |
#!/usr/bin/python # -*- coding: utf-8 -*- # Copyright: (c) 2016, Dag Wieers (@dagwieers) <dag@wieers.com> # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) DOCUMENTATION = r''' --- module: win_shortcut short_description: Manage shortcuts on Windows description: - Create, manage and delete Windows shortcuts options: src: description: - Executable or URL the shortcut points to. - The executable needs to be in your PATH, or has to be an absolute path to the executable. type: str description: description: - Description for the shortcut. - This is usually shown when hoovering the icon. type: str dest: description: - Destination file for the shortcuting file. - File name should have a C(.lnk) or C(.url) extension. type: path required: yes arguments: description: - Additional arguments for the executable defined in C(src). type: str aliases: [ args ] directory: description: - Working directory for executable defined in C(src). type: path icon: description: - Icon used for the shortcut. - File name should have a C(.ico) extension. - The file name is followed by a comma and the number in the library file (.dll) or use 0 for an image file. type: path hotkey: description: - Key combination for the shortcut. - This is a combination of one or more modifiers and a key. - Possible modifiers are Alt, Ctrl, Shift, Ext. - Possible keys are [A-Z] and [0-9]. type: str windowstyle: description: - Influences how the application is displayed when it is launched. type: str choices: [ maximized, minimized, normal ] state: description: - When C(absent), removes the shortcut if it exists. - When C(present), creates or updates the shortcut. type: str choices: [ absent, present ] default: present run_as_admin: description: - When C(src) is an executable, this can control whether the shortcut will be opened as an administrator or not. type: bool default: no notes: - 'The following options can include Windows environment variables: C(dest), C(args), C(description), C(dest), C(directory), C(icon) C(src)' - 'Windows has two types of shortcuts: Application and URL shortcuts. URL shortcuts only consists of C(dest) and C(src)' seealso: - module: ansible.windows.win_file author: - Dag Wieers (@dagwieers) ''' EXAMPLES = r''' - name: Create an application shortcut on the desktop community.windows.win_shortcut: src: C:\Program Files\Mozilla Firefox\Firefox.exe dest: C:\Users\Public\Desktop\Mozilla Firefox.lnk icon: C:\Program Files\Mozilla Firefox\Firefox.exe,0 - name: Create the same shortcut using environment variables community.windows.win_shortcut: description: The Mozilla Firefox web browser src: '%ProgramFiles%\Mozilla Firefox\Firefox.exe' dest: '%Public%\Desktop\Mozilla Firefox.lnk' icon: '%ProgramFiles\Mozilla Firefox\Firefox.exe,0' directory: '%ProgramFiles%\Mozilla Firefox' hotkey: Ctrl+Alt+F - name: Create an application shortcut for an executable in PATH to your desktop community.windows.win_shortcut: src: cmd.exe dest: Desktop\Command prompt.lnk - name: Create an application shortcut for the Ansible website community.windows.win_shortcut: src: '%ProgramFiles%\Google\Chrome\Application\chrome.exe' dest: '%UserProfile%\Desktop\Ansible website.lnk' arguments: --new-window https://ansible.com/ directory: '%ProgramFiles%\Google\Chrome\Application' icon: '%ProgramFiles%\Google\Chrome\Application\chrome.exe,0' hotkey: Ctrl+Alt+A - name: Create a URL shortcut for the Ansible website community.windows.win_shortcut: src: https://ansible.com/ dest: '%Public%\Desktop\Ansible website.url' ''' RETURN = r''' '''