summaryrefslogtreecommitdiff
path: root/lib/chef/win32
Commit message (Collapse)AuthorAgeFilesLines
* Improve sentencesTim Smith2015-10-181-1/+1
|
* Merge pull request #3462 from chef/jdm/pscred-winrmSteven Murawski2015-09-081-1/+1
|\ | | | | | | Fix issue where ps_credential does not work over winrm
| * Allow creation of secure strings over remoting/servicesjdm/pscred-winrmJay Mundrawala2015-06-011-1/+1
| | | | | | | | | | | | | | | | The issue here is the user profile does not get loaded when running over winrm / as a service. This user profile is needed to use the DPAPI to encrypt the data for the current user. Should fix #3246
* | Move Win32::Registry#write monkeypatch into win32/registry monkeypatch file.Claire McQuin2015-09-041-27/+0
| |
* | Implement delete_key with Win32::Registry#delete_keyClaire McQuin2015-09-031-26/+13
| |
* | Remove access mask to RegDeleteKeyExW, it's not usefulClaire McQuin2015-09-031-2/+1
| |
* | Monkey-patch Win32::Registry::API::DeleteKey for Win32::Registry#delete_keyClaire McQuin2015-09-031-4/+1
| |
* | Monkey-patch Win32::Registry::API::DeleteValue for Win32::Registry#delete_value.Claire McQuin2015-09-032-0/+10
| |
* | Refactor Chef::Mixin::WideString to remove implicit Windows dependency.mcquin/refactor-wstringClaire McQuin2015-09-0111-55/+20
| |
* | Patch Win32::Registry#write on Ruby 2.1, resolves encoding errorsmcquin/monkeypatch-win32-registry-writeClaire McQuin2015-08-311-0/+27
| |
* | Fix constantSalim Alam2015-08-311-1/+1
| |
* | Prep for Registry FFI; Convert RegDeleteKeyEx to FFIsalam/registry-ffichefsalim2015-08-302-2/+57
| |
* | FFI NetUseAddJay Mundrawala2015-08-282-0/+24
| |
* | FFI NetUseGetInfoJay Mundrawala2015-08-282-0/+38
| |
* | Create StructHelperJay Mundrawala2015-08-281-38/+42
| |
* | Use FFI for NetUseDelJay Mundrawala2015-08-282-0/+31
| |
* | Rename NetUser -> NetJay Mundrawala2015-08-281-1/+2
| |
* | Make win32/api/net.rb look nicerjdm/net-api-styleJay Mundrawala2015-08-281-11/+28
| |
* | Use ffi for GetVolumeNameForVolumeMountPointJay Mundrawala2015-08-272-0/+14
| |
* | Convert SetVolumeMountPoint to use ffiJay Mundrawala2015-08-272-0/+13
| |
* | Rewrite DeleteVolumeMountPoint to use FFIJay Mundrawala2015-08-272-0/+16
| |
* | Merge pull request #3775 from chef/salam/win64Salim Alam2015-08-193-0/+98
|\ \ | | | | | | Enable 64-bit support for Powershell and Batch scripts
| * | Enable 64-bit support for Powershell and Batch scriptsSalim Alam2015-08-193-0/+98
| | |
* | | FFYify NetLocalGroupDelMembersJay Mundrawala2015-07-301-0/+13
| | |
* | | FFYify NetLocalGroupSetMembersJay Mundrawala2015-07-302-0/+31
| | |
* | | FFYify NetLocalGroupAddMembersJay Mundrawala2015-07-301-0/+22
| | |
* | | FFIify NetLocalGroupGetMembersJay Mundrawala2015-07-293-0/+58
| | |
* | | Add Win32NetAPIError exception classJay Mundrawala2015-07-291-7/+1
| | |
* | | Rewrite NetLocalGroupDel to use FFIJay Mundrawala2015-07-292-0/+16
| | |
* | | Convert NetLocalGroupAdd to use FFIJay Mundrawala2015-07-292-0/+25
|/ /
* | Add ability to specify dependencies in chef-service-manager.Kartik Null Cating-Subramanian2015-07-241-4/+0
| |
* | downcasted registry key names to lowercaseJKerry2015-06-261-2/+10
|/
* Merge pull request #3267 from dbjorge/issue-3266Thom May2015-05-203-2/+61
|\ | | | | #3266 Fix bad Windows securable_resource functional spec assumptions for default file owners/groups
| * Pin sid_spec default group expectation to observed behaviorDan Bjorge2015-04-231-1/+2
| |
| * securable_resource functional specs compare default creation permissions ↵Dan Bjorge2015-04-233-2/+60
| | | | | | | | against actual defaults on Windows
* | Don't call get_last_error for net apijdm/winnetfixJay Mundrawala2015-05-201-30/+6
| |
* | Added comment to LMSTRJay Mundrawala2015-05-151-1/+1
| |
* | remove unused param_err in net_user_set_info_l3Jay Mundrawala2015-05-151-2/+1
| |
* | remove unused param_err in net_user_add_l3Jay Mundrawala2015-05-151-2/+1
| |
* | wstring the thingsJay Mundrawala2015-05-151-7/+4
| |
* | LogonUser uses ffi instead win32-apiJay Mundrawala2015-05-153-7/+36
| |
* | Move win32/user to win32/netJay Mundrawala2015-05-151-0/+0
| |
* | NetUserDel uses ffi instead in win32-apiJay Mundrawala2015-05-152-0/+20
| |
* | Empty strings should be able to be converted into wide stringsJay Mundrawala2015-05-151-1/+1
| |
* | NetUserSetInfo uses ffiJay Mundrawala2015-05-152-3/+40
| |
* | NetUserGetInfo uses ffiJay Mundrawala2015-05-152-6/+93
| |
* | Replace some user creation win32-api calls with ffiJay Mundrawala2015-05-153-2/+193
| |
* | Change handle to size_tJay Mundrawala2015-05-151-1/+1
| |
* | Only require win32/eventlog onceJay Mundrawala2015-05-071-0/+31
| |
* | windows_package is idempotent againjdm/winstaller-idempotentJay Mundrawala2015-04-301-1/+1
|/ | | | | | | | | | This was broken in #3034. The issue is that the package does not get detected as installed because the version that is installed has \x00 at the end, while the version from the msi does not. This fails comparison, and we fall into code that does not use source and thus requires candidate version and we die. (Or something like that) Solves #3316