Posted On December 3, 2020

Enabling Unix Newline ‘LF’ Support for Windows 10 Version 1706 or Higher

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Enabling Unix Newline ‘LF’ Support for Windows 10 Version 1706 or Higher

Please note that the following PoSH commands won’t work on earlier versions of Windows (e.g. Windows Server 2016 release 1607)

$registryNotepad='REGISTRY::HKEY_CURRENT_USER\Software\Microsoft\Notepad'
$dwordMofifyEolPaste='fPasteOriginalEOL'
$dwordMofifyEolWindows='fWindowsOnlyEOL'
$enable=0
$disable=1
Set-ItemProperty -Path $registryNotepad -Name $dwordMofifyEolPaste -Value $enable
Set-ItemProperty -Path $registryNotepad -Name $dwordMofifyEolWindows -Value $enable

# Signout and back in to observe the difference

# Reverse the change
Remove-ItemProperty -Path $registryNotepad -Name $dwordMofifyEolPaste
Remove-ItemProperty -Path $registryNotepad -Name $dwordMofifyEolWindows

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Print Server Admin Tasks – 2006 Notes

How to resolve an issue with a print job that freezes upon "cancel" Preliminary: the…

Adjust Active Directory Traffic Distribution Among Domain Controllers

Change LdapSrvWeight to proportionally distribute AD referral traffic (default 100) Regedit >> HKLM\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters >> New…

Install Microsoft FTP on Windows 2008 R2

1. Install IIS without FTP 2. Download FTP a. x64: b. x86: 3. Create FTP…