From Wiki96
Jump to: navigation, search
m
m (Reverted edits by 94.233.241.205 (talk) to last revision by 77.253.252.99)
Tag: Rollback
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Stub|Very little content.}}
{{Stub|Little content.}}
Shell36 is the name of the default shell in Windows 96. Shell36 handles the start menu, taskbar, desktop, and notification services.
Shell36 is the name of the default shell in Windows 96. Shell36 handles the start menu, taskbar, desktop, and notification services.
If you terminate it using the Task manager, you can no longer open it and your screen will go black.
Before Shell36 gets started, you can't open any windows.
== Remove it ==
If you don't want the UI, DO NOT delete the binary.
Instead put this in C:/system/boot/noui.js:
<syntaxhighlight lang="js">
w96.evt.sys.on("init-complete", async () => {
  w96.state.processes.find(e => e && e.title === "shell36").terminate();
  w96.sys.execCmd("APP") //instead of APP put any application you want like "terminal"
});
</syntaxhighlight>
== Location ==
You can find the binary at C:/system/local/bin/shell36.

Latest revision as of 18:38, 16 May 2023

StubEmoji.jpg
Where is the content?

This page is a stub. You can help Wiki96 by extending it.
User note: Little content.

Shell36 is the name of the default shell in Windows 96. Shell36 handles the start menu, taskbar, desktop, and notification services.

If you terminate it using the Task manager, you can no longer open it and your screen will go black. Before Shell36 gets started, you can't open any windows.

Remove it

If you don't want the UI, DO NOT delete the binary. Instead put this in C:/system/boot/noui.js:

w96.evt.sys.on("init-complete", async () => {
  w96.state.processes.find(e => e && e.title === "shell36").terminate();
  w96.sys.execCmd("APP") //instead of APP put any application you want like "terminal"
});

Location

You can find the binary at C:/system/local/bin/shell36.