This code was defined by a third party software company,
and may mean different things for different software.
Contact the software author for more information about this error.
I just want to call an URL with the tasks scheduler on Windows Server 2008 and a Powershell Script. So I developed the following script : $url = "http://example.com" $log_file = "${Env:USERPROFILE}\Desktop\Planification.log" $date = get-date -UFormat "%d/%m/%Y %R" "$date [INFO] Exécution de $url" >> $log_file $request = [System.Net.WebRequest]::Create($url) $response = [...] read more
I want to create something like this in flutter. enter image description here [https://i.stack.imgur.com/zyttl.png] Here is my code import 'package:flutter/material.dart'; import 'dart:math'; class Arc extends CustomPainter { final double angle = 210.0; double doubleToAngle(double angle) => angle * pi / 180.0; Arc(this.angle); void drawArcWithRadius( Canvas canvas, Offset center, double radius, [...] read more
TLDR VERSION I need to run a 32-bit PowerShell script that takes three arguments as a scheduled task in Windows Server 2008 R2. The script starts a FileSystemWatcher, so I need to keep it alive so that it can keep picking up new files. You should probably look at the [...] read more
I have a PowerShell script that sends an email via SMTP. The script runs fine inside Powershell ISE, but fails in Task Scheduler. I am on Windows Server 2012. I have other Powershell scripts that I run on this server using the exact same setup, but those scripts do not [...] read more
How can I ensure that a directory exists upon Windows Server system startup, before SQL Server starts? I'm running SQL Server 2017 on Windows Server 2019 on an Azure VM. I'd like to store my tempdb on the local SSD D:\ drive ("Temporary Storage") (as suggested here) under the directory [...] read more
I'm trying to run a PowerShell script using unattend.xml file for Windows Server 2012 R2 setup. I specified that PowerShell file to execute at specialise pass stage. Please check the below unattended script for PowerShell. powershell.exe -executionpolicy bypass -noprofile -File "\\192.168.3.5\deploy\demo.ps1" Everytime when I ran the setup using the unattended [...] read more
I am trying to run a powershell script during a Windows 10 inplace upgrade task sequence. The script exports Win 10 start menu tiles of the users and then imports them after upgrade. I am getting error 0xFFFD0000 while exporting. The command lines I have used to run the script [...] read more
On a Windows Server 2012 R2 Build 9600, I have a Scheduled Task that runs successfully on demand. I need it to run every hour every day. if I change it to "Run Hourly, Every Day", it fails with error codes: 0xFFFD0000 and 4294770688, which stands for "The field “Add [...] read more