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

Disk Partitioning & Formatting Reference

Refer to this table as a reference on sector/cluster size leading to maximum storage per…

Microsoft Dynamics 365 Error with Send-As

Symptoms: Recurring error in Event Log #61346 - An error occurred while checking for outgoing…

SMB 1 vs SMB2 Compatibility Issues

Cause: "SMB 1.0 is deprecated. Once this is removed, systems running Windows XP or Windows…