Re: Is linux your daily driver? Hardware and Software Linux and Unix by fzlr Yes, it is. I may be forced to work with Microsoft products at work but in my free time I'm using Aurora. bootc is a GAME CHANGER. 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: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani > I have seen too much code written by self-taught programmers who, through ignorance, eschewed good design. While that's very, very true, that's \[unfortunately] not typically what people come to DaniWeb asking for help with. Many people unfortunately don't care about doing things right, but just well enough to work. As long as it gets the … 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 Is linux your daily driver? Hardware and Software Linux and Unix by Dani Linux has come a long way, but it's still primarily a server OS, correct? How many of you linux fanboys and girls use it as your primary operating system for daily tasks? How does it compare to Windows or macOS in terms of productivity and overall user experience? Re: Is linux your daily driver? Hardware and Software Linux and Unix by Ulfson … come a long way, but it's still primarily a server OS, correct? How many of you linux fanboys and girls… heavily - getting the best of both worlds. I also use Windows, as I've had to in some companies, but not… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Benjamin_17 The last time I used Windows was Windows XP when I got a blue screen of death trying … Re: Is linux your daily driver? Hardware and Software Linux and Unix by Salem I use it all day, every day. TBH, M$ stopped being an OS company after Windows 7 and the so-called OS just became a marketing tool to ram ever more crap in front of your face. Re: Is linux your daily driver? Hardware and Software Linux and Unix by Vince_6 I used Linux on and off for years. I was finally willing to commit to Windows 11 when it installed some updates and it went into a reboot loop afterwards. I said screw it and went back to Linux. Been using it for months as my primary OS and I am quite happy with the decision.