No, not really, it has a quite different purpose:
; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.1.0
; Author: edvard_mcfly
;
; Script Name:
; Kansas (as in, "There's no place like Home")
;
; Script Function:
; Reverts to Explorer as your default shell and quickly logs off
; in case your alternate shell crashes or misbehaves.
;
; ----------------------------------------------------------------------------
; Script Start
RegWrite ("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\IniFileMapping\system.ini\boot","Shell","REG_SZ","SYS:Microsoft\Windows NT\CurrentVersion\Winlogon")
RegWrite ("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon","Shell","REG_SZ","explorer.exe")
RegWrite ("HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon","Shell","REG_SZ","explorer.exe")
RegWrite ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer","DesktopProcess","REG_DWord","0")
RegWrite ("HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer","BrowseNewProcess","REG_SZ","no")
Shutdown (0)
; Fi