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

ADFS Configurations

View existing ADFS global configs PS C:\Users\administrator.CAP> get-AdfsGlobalWebContentSignOutPageDescriptionText :UpdatePasswordPageDescriptionText :Locale :CompanyName :CertificatePageDescriptionText :ErrorPageDescriptionText :ErrorPageGenericErrorMessage :ErrorPageAuthorizationErrorMessage…

PowerShell: Get Available RAM Slots

# getRamSlotsAvailable.ps1 $computername=$env:computername function getRamSlotsAvailable{ param($computername=$env:computername) write-host "Computer name: $computerName" $slots = Get-WmiObject -Class "win32_PhysicalMemoryArray"…

PowerShell: Remove an A-Host Record within Active Directory Integrated DNS Domain

Warning: this code is NOT 'production ready'. Please review and test on DEV environments carefully…