> puppet resource user 'test' ensure=present |
Notice: /User[test]/ensure: created |
user { 'test': |
ensure => 'present', |
provider => 'windows_adsi', |
} |
|
> puppet resource user 'test' ensure=absent managehome=true |
Error: Could not set 'absent' on ensure: (in OLE method `Delete': ) |
OLE error code:80070002 in SWbemServicesEx |
The system cannot find the file specified. |
HRESULT error code:0x80020009 |
Exception occurred. |
Error: Could not set 'absent' on ensure: (in OLE method `Delete': ) |
OLE error code:80070002 in SWbemServicesEx |
The system cannot find the file specified. |
HRESULT error code:0x80020009 |
Exception occurred. |
Wrapped exception: |
(in OLE method `Delete': ) |
OLE error code:80070002 in SWbemServicesEx |
The system cannot find the file specified. |
HRESULT error code:0x80020009 |
Exception occurred. |
Error: /User[test]/ensure: change from 'present' to 'absent' failed: Could not set 'absent' on ensure: (in OLE method `Delete': ) |
OLE error code:80070002 in SWbemServicesEx |
The system cannot find the file specified. |
HRESULT error code:0x80020009 |
Exception occurred. |
user { 'test': |
ensure => 'absent', |
provider => 'windows_adsi', |
} |
|
> puppet --version |
7.9.0
|