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

Fix 4GB Limitation on a Windows 32BIT OS

PatchPae (v2) by wj32. Tested on: Windows Vista SP2, Windows 7 SP0, Windows 7 SP1,…

Quick PowerShell Cmdlet to Move Computer Object

$computername='SomeComputerName' $targetOU='OU=Computers,DC=kimconnect,DC=com' Move-ADObject -Identity (Get-ADComputer $computername).objectguid -TargetPath $targetOU

How to globally edit PING monitor timing (to 30 seconds)

IPMonitor uses “monitors” in order to test a machine’s status for different components. The PING…