Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by NuGG …both servers have entirely clean and activated installations of Server 2019. Every day without fail both servers reboot … I have done: 1) Disabled "Allow remote server management through WinRM" 2) Disabled "Configure automatic…any suggestions before I cut my losses and abandon windows hyper v and go with a ubuntu hypervisor? … Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by rproffitt Try a focused area like on Reddit such as https://www.reddit.com/r/homelab/comments/740ap2/the_unofficial_fujitsu_server_guide/ If these were mine I'd move to Linux or BSD. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by NuGG Aha! I cracked it. My goodness this has been driving me mad for two weeks. Turns out previous owners had a power on schedule configured, and the management controller retained the old config even though I put a fresh OS on it. Doh! Live and learn. Been coming on daniweb for 20 years, was always such a great place for help and advice. … Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Reverend Jim >Where is everyone? Most of the posts here seem to be the same words about SEO/digital marketing over and over. That doesn't attract too many eyeballs. There is very little programming content any more. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani > Been coming on daniweb for 20 years, was always such a great place for help and advice. Last time I visited was 4-5 years ago and I noticed then it was getting quieter. Somewhat sorry to see the state of things now, these "most recent" threads are all so old! Where is everyone? I shall try stop by here more often and contribute! … Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Reverend Jim >(where people abandoned us for sites like Stack Overflow) But there are still a few dinosaurs around who can answer some programming questions. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani Then there’s me, whose expertise is mostly limited to technical SEO and PHP these days, I’m afraid. Ugh, the brain fog is real. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani > >(where people abandoned us for sites like Stack Overflow) > > But there are still a few dinosaurs around who can answer some programming questions. Not to knock ya, but I think another part of the problem is that *all* that's left are dinosaurs who aren't necessarily skilled at the most trendiest things these days. There's … Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Reverend Jim Agreed. But programming basics are still something people need help with, and the basics have not changed appreciably over my career. Dinosaurs have more free time than those many decades younger. I, for one, have a lot and I am willing to spend part of it here. Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani > But programming basics are still something people need help with, and the basics have not changed appreciably over my career. They sure have changed appreciably during *my* career! But maybe that's because my career is in web development, and the web, and the technologies that power the web, have changed *a lot* over the past 25 years. Heck… Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Reverend Jim Certainly the technology and tools have changed but principles of design and good programming styles have not. Python has, for the most part, replaced (effectively) dead languages like COBOL, and now-niche languages like FORTRAN, but structured programming and modular design are still essential techniques. I have seen too much code written by self-… Re: Cannot run exe from asp.net Programming Web Development by lennyli …an app: > > On the server: Only for background tasks, not for opening windows. > > On the client: You…inputed the server IP into the sample code. I turned off all firewalls and installed python on both windows 11 computers…. When I run the command "python server.py" on the server pc, it … Re: Cannot run exe from asp.net Programming Web Development by Neil_brown001 …, but: It will run in the background on the server, not visibly on the desktop. It needs special permissions …your site in Visual Studio, it uses a development web server (Kestrel or IIS Express), which picks a random port.… that launches an app: On the server: Only for background tasks, not for opening windows. On the client: You need a… Re: Cannot run exe from asp.net Programming Web Development by lennyli …for a connection...")` ? > > Consider making your server main like this. > > if __name__ == "…gt; > Your client failed with the timeout because your server isn't running. > > > A …successfully, but as i said disappointingly the python server.py command didnt output any text before returning control… Re: Cannot run exe from asp.net Programming Web Development by Salem …When I run the command "python server.py" on the server pc, it held for a second, …if __name__ == "__main__": print('Server Begin') main() print('Server End') You can add more prints in the… Your client failed with the timeout because your server isn't running. A very basic test: At… Cannot run exe from asp.net Programming Web Development by lennyli … the latest .net framework, and IIS on the latest updated windows 11. I wish to achieve the following: Have a webpage…, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at… Re: Cannot run exe from asp.net Programming Web Development by gediminas.bukauskas.7 Pritaeas answered the question: normal WEB security settings forbids launching executables on a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine and listen for some commands coming from server over WEB sockets. Re: Cannot run exe from asp.net Programming Web Development by lennyli … a client machine. The only legal workaround is to create windows service (daemon in Linux environment), install it on client machine… and listen for some commands coming from server over WEB sockets. Sure, I understand, but for my above… Re: Cannot run exe from asp.net Programming Web Development by lennyli …\wwwroot\ribbons.scr" ' Create a shell object Set objShell = Server.CreateObject("WScript.Shell") ' Run the executable result = objShell… Re: Cannot run exe from asp.net Programming Web Development by lennyli … be seen as a notebook computer that has a web server installed. It is connected only to a wifi router without… Re: Cannot run exe from asp.net Programming Web Development by john_111 … handle data transfers such as access a database on the server. Or a javascript to alter the web page if you… Re: Cannot run exe from asp.net Programming Web Development by Salem …, when pressed, it will launch a webpage that runs a server side exe (eg, notepad.exe or ribbons.scr), while at… Re: Cannot run exe from asp.net Programming Web Development by lennyli I fixed the problem by ensuring the path is including python. Also on the server I must run pip install Thank you all All working now Re: Cannot run exe from asp.net Programming Web Development by pritaeas > while at the same time run the same exe on the local client pc. Not possible. Re: Cannot run exe from asp.net Programming Web Development by pritaeas No, Javascript cannot run/start executables on the client machine. Re: Cannot run exe from asp.net Programming Web Development by rproffitt I see pritaeas has answered so I'll move to the next stage of the discussion which is to ask what you need in your web site. For example there is an "online notepad" which does some basic notepad work. And there are many screensavers that run from a webpage with an example at whitescreen.online . You can get there. Re: Cannot run exe from asp.net Programming Web Development by pritaeas Are you sure IIS is configured to allow running external scripts? Re: Cannot run exe from asp.net Programming Web Development by lennyli > Are you sure IIS is configured to allow running external scripts? The document folder and asp file has security permission set to ALL rights for 'everyone'. In IIS, under handler mappings for .asp files, under request restriction/access, script was chosen (not execute) for feature permissions, all 'read' 'script' 'execute' are chosen Re: Cannot run exe from asp.net Programming Web Development by Reverend Jim >No, Javascript cannot run/start executables on the client machine. Technically correct but there are ways around it. For example, save a file in a special folder on the target computer, which has a folder watch on that folder. The watching task could then trigger a local task. Re: Cannot run exe from asp.net Programming Web Development by Salem Congrats on getting going. > Even if i run the setup and ticked the option "add to path", the echo %PATH% command didnt seem to show what i expected. Yeah, this won't transform the PATH of any existing process. In increasing annoyance order, you may have to: 1. Start a new cmd window 2. Log out and log in again 3. Reboot …