Skip to content

Instantly share code, notes, and snippets.

@cbilson
Created June 13, 2014 15:40
Show Gist options
  • Save cbilson/33d3eb208f078d9475ea to your computer and use it in GitHub Desktop.
Save cbilson/33d3eb208f078d9475ea to your computer and use it in GitHub Desktop.
Make emacs server work on windows
if (Test-Path ~\.emacs.d\server) {
$acl = Get-Acl ~\.emacs.d\server
$acct = [Security.Principal.NTAccount] "$env:USERDOMAIN\$env:USERNAME"
$acl.SetOwner($acct)
Set-Acl ~\.emacs.d\server $acl
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment