Variable: tramp-smb-connection-local-powershell-variables

tramp-smb-connection-local-powershell-variables is a variable defined in tramp-smb.el.gz.

Value

((explicit-shell-file-name . "powershell")
 (explicit-powershell-args "-file" "-")
 (shell-file-name . "powershell") (shell-command-switch . "-command")
 (shell-history-file-name . t))

Documentation

Default connection-local powershell variables for remote smb connections.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-smb.el.gz
;; (defconst tramp-smb-connection-local-bash-variables
;;   '((explicit-shell-file-name . "bash")
;;     (explicit-bash-args . ("--norc" "--noediting" "-i"))
;;     (shell-file-name . "bash")
;;     (shell-command-switch . "-c"))
;;   "Default connection-local bash variables for remote smb connections.")

;; (connection-local-set-profile-variables
;;  'tramp-smb-connection-local-bash-profile
;;  tramp-smb-connection-local-bash-variables)

(defconst tramp-smb-connection-local-powershell-variables
  `((explicit-shell-file-name . "powershell")
    (explicit-powershell-args . ("-file" "-"))
    (shell-file-name . "powershell")
    (shell-command-switch . "-command")
    (shell-history-file-name . t))
  "Default connection-local powershell variables for remote smb connections.")