Check-in [91bc1b9185]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | WMI Win32_SharedFolders |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
91bc1b9185b4446cd01254659ff5b5d7 |
| User & Date: | mario 2018-05-16 18:06:13 |
Context
|
2018-05-16
| ||
| 18:07 | All-in-one CIM query plugin (lengthy class list), with support for Out-DisplayDispatch check-in: 94b744668d user: mario tags: trunk | |
| 18:06 | WMI Win32_SharedFolders check-in: 91bc1b9185 user: mario tags: trunk | |
| 18:05 | WMI Win32_OS check-in: 6f53bccd86 user: mario tags: trunk | |
Changes
Added tools/wmi/sharedfolders.ps1.
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# api: multitool
# status: INCOMPLETE
# version: 0.1
# title: Shared Folders
# description: win32_shares
# type: inline
# category: wmi
# hidden: 0
# key: w2|disk|disks?|mapped
# config: {}
#
# Find disk/share mapping (incomplete)
# -> rather use psinfo.exe?
Param($machine = (Read-Host "Machine"))
Get-WmiObject Win32_Share -computer $machine
|