I'm running 2016.3 No patches
Do we not reset package hashes in 2016.3?
I'm running 2016.3 No patches
Do we not reset package hashes in 2016.3?
More information about how a replication job works can be found in LANDESK Content Replication Process
There are a few components involved in the Content Replication process that are all used to create and manage a replication setup.
The configuration of all settings is done in the Ivanti EPM Console. The console also contains information about running, pending, and unscheduled tasks. There is also a task history with progress, status and logs for each replication task. Additionally, the console allows the Ivanti EPM administrator to quickly stop any running replication jobs or disable job(s) from running in the future. For more information about the tools available in the Ivanti Endpoint Manager Console see:
Ivanti EPM Content Replication - Console Options and Tools
These are the preferred servers that the clients will use to download files from. They are also the target servers that files will be replicated to from a source location. Any existing configuration of the Preferred servers will persist through an upgrade and can still operate as preferred servers only, without replication if desired. For more information about all the configuration options available for a Preferred server please see:
Ivanti EPM Content Replication - Preferred Server (Target) Configuration.
The Preferred servers will continue to operate the same way they did with previous versions of Ivanti EPM. Clients will attempt to get files from Preferred servers first, before attempting to get them from the original source location. More information about how Preferred servers work and support clients can be found here:
How to Configure a Preferred Package Server
How to set up an HTTP share for a Preferred Package Share
Using Preferred Server in Patch Manager
Some of the configuration steps in the documents above have changed. For current configuration options see the various updated documents listed here.
The Preferred server must have identical shares that match any Source that is replicated to them. That means if \\FileServer\Software is replicating to PreferredServer1, then PreferredServer1 must have a Software share (\\PreferredServer1\Software). These shares must be created manually, but any folders inside the shares can be created by the replication process.
A Preferred server that will be a target for replication can be any UNC compatible device, including NAS devices.
A Source can also be a Preferred server. For example, a "master" Source may replicate to "child" Sources. Then those "child" Sources replicate to more Preferred servers. In this case, a "child" Source would be both a Preferred server (for the "master" source) and a Source (for the final Preferred servers).
A source is any UNC or HTTP share that contains data and files that need to be replicated to Preferred servers. A source can be configured as an entire share or a specific folder inside a share. All subfolders and files are included as part of the source. For example, if a source is configured as \\FileServer\Software, it will include all the files and folders inside the Software share. However, if it is configured as \\FileServer\Software\Microsoft, it will only include the files and folders inside the Microsoft folder. For more information on the configuration of a Source see:
Ivanti EPM Content Replication - Source Configuration
Any number of Sources can be configured. They can overlap if needed. They can all be managed independently and assigned to any combination of Preferred servers as needed to suit the environment. The share names must match and already be configured on any Target Preferred servers, but any subfolders will be created by the replication process.
A Source can also be a Preferred server. For example, a "master" Source may replicate to "child" Sources. Then those "child" Sources replicate to more Preferred servers. In this case, a "child" Source would be both a Preferred server (for the "master" source) and a Source (for the final Preferred servers).
A Replicator is any Windows-based managed node and must be a Windows-based managed node. The Replicator is the machine that will do the replication work. It will identify which files and folders on the source need to be copied to the Preferred server (Target) then download those files and push them to the Preferred server (Target). The device used as the Replicator will need to have enough storage for the files being replicated to be stored in the cache.
The replication process is managed on the client machine by the LANDESK Local Scheduler and the client process that performs the replication is vulscan.exe. The Replicator configuration allows for scheduling replication, including a true maintenance window as well as bandwidth restrictions as needed. For information on configuring a Replicator see:
Ivanti EPM Content Replication - Replicator Configuration
During a replication job the Replicator will identify which files are missing from the Preferred server. It will then download those files from the Source and push those files to the Preferred server. All files that are downloaded to be pushed to Preferred servers will remain in the Replicator's cache. The time to keep these files can be configured in the Replicator settings. For details on the file replication process see:
Ivanti EPM Content Replication Process
A Replicator can be configured on a Source or a Preferred server. In this case, a single device would serve 2 roles. Also the device will have 2 copies of all files that were replicated. One in the share location and one in the SDMCache.
If the SDMCache is on the same drive as the share (C:\Program Files\LANDESK\LDClient\SDMCache and C:\Share, or D:\SDMCache and D:\Share) Ivanti EPM will try to create a hard link so that there is only one physical copy of the data on the disk, even though it can be found in two logical locations.
A single Replicator can handle any number of independent Sources and Preferred servers (Targets). However, a Preferred server can only have ONE replicator assigned to it.
A large variety of configurations and scenarios can be set up to meet many file replication needs using Ivanti EPM Content Replication. These vary from a single Source and single Preferred server to dozens of Sources and hundreds of Preferred servers, each needing different sets of files. Most needs can be met with good planning and some creativity. To get started, a few scenarios can be found here:
Ivanti EPM Replication - Scenarios
These scenarios are meant as a starting point or ideas in developing a replication configuration. Not all of the scenarios are in use in a production environment and should be carefully tested.
Description:
While adding additional files to a package a 404 error occurs.
CAUSE
One of the sub-directories has a file that is set as a default content page like: Default.aspx, Default.htm, Default.asp, index.htm, or iisstart.htm.
When accessing that directory those pages are served up instaed of a listing of the directory.
RESOLUTION
Change to a UNC share. Those files are not going to be downloaded to clients if using download from source since IIS will treat them as webpages and not downloadable content.
RESOLUTION 2
A transform file (.mst) is file that passes customized configuration settings to the MSI installer package. Information about the customized setup of a package, application configuration, or a variety of other customizations is contained in the transform file. These customizations are typically unique to a specific environment.
Once a transform file is created, the transform file needs to be added to the package as an additional file.
To use a transform file that was added as an additional file, the TRANSFORMS= command must be part of the command line.
For example, If you had a package that had a .mst file called test.mst the command line would need to contain TRANSFORMS=test.mst. LANDesk will then build the command line for msiexec.exe to look something like this:
msiexec.exe /i example.msi TRANSFORMS=test.mst
This would install the application (/i) and use the specified transform file. This example also assumes that the transform file is in the same directory as the msi. In the event that they transform file is not in the same directory the path would need to be specified.
msiexec.exe /i example.msi TRANSFORMS=c:\your_directory\test.mst
The msiexec.exe command is called by LANDESK and does not need to be specified in the command line and the install switch is added to the command line automatically for you. The only additional parameter required to use the transform file is the TRANSFORMS= command. Other parameters may be specified based on the requirements of the package.
When calling a transform file from the command line TRANSFORMS must be in all capital letters. Also note that there is no / or \ for TRANSFORMS.
This is what it should look like in the console:
For configuring a Preferred Server on a Core Server see the following Community Document: http://community.landesk.com/support/docs/DOC-1385
Create a folder on your Preferred Package Server - This folder MUST be the same structure as your root folder on your primary package server.
Example:
If the primary package server URL is ..\Program Files\directory1\appname\application.exe
Your preferred package server would be ..\Program Files\directory1\appname\application.exe.
Replicate all the files and folders associated with the original package root to the new folder created on the preferred server.
Any file replication software can be used to automate this process. It is recomended to use LANDesk Content Replication to preserve the hash and to make file management easier.
For Windows 2008 and IIS 7.5, please visit How to set up a Preferred Server in IIS 7.5
A software distribution task will be created and run. The required package will successfully deploy, but the task will show failure in the LANDESK console.
Traditionally software tasks used an exit code of 0 to indicate a successful status, and anything nonzero meant an error had occurred, with the different exit codes meaning different reasons for the failure. Unfortunately it is becoming more and more common to use nonzero exit codes to indicate success. For example, exit code 3010 often means that the installation was successful, but a reboot is required. In this scenario it would be beneficial to have that count as a success rather than a failure. This is especially true for Policy Support Push tasks that rely on a successful status to make sure that the device doesn't get queued up to run the same task as a policy.
A custom return code mapping can be created by following these steps:
The idea of this document is a resource for what to look for when a Software Distribution job fails. Its intent is to help anyone using the Ivanti EPM product narrow down the cause of a failed Software distribution job. This document is not intended to cover high-level troubleshooting (I.E. using Xtrace and Packet captures).
This document is assuming that the Software Distribution job has actually attempted to run on a system. This document is not going to cover scenarios or problems that may occur with "Scheduling" a Software Distribution job. Troubleshooting the "Global Scheduler" is an entirely different topic.
The first and worst assumption that is always made is the following: "The software installs fine if I browse to the location and run it manually". This is the biggest misconception that almost everyone makes when trying to diagnose a Software Distribution task. When a task is run using this method, it is run as the logged in user, or if desired the "Run as" option is selected and it runs as a specific user. By default Ivanti EPM runs its tasks using "LOCAL SYSTEM".
The only way that a Software distribution job should ever be tested is trying the run them as " LOCAL SYSTEM". The following document will walk you through testing an application as "LOCAL SYSTEM". http://community.landesk.com/support/docs/DOC-2316
Once you have brought up the "LOCAL SYSTEM" CMD prompt do the following. Use the "NET USE" command to map a drive to the software location. Make sure that when the application is selected the switches that may have been added when creating the task are used. (For Example msoffice.exe /q)
I can now run the software as "LOCAL SYSTEM"
The sdclient_taskXXX.log in the ldclient\data folder. This log contains almost everything that should be known about the task.
Open this log and scroll to the bottom. If the job is failing something like this will be seen:
Fri, 23 Jan 2009 12:40:47 .\AdditionalFiles.cpp(62): (8DAC4026): Failed to download file http://LANDesk.Gateway@10.4.42.98/ldlogon/FileLists/taskmanifest.WLUDEV071119.154.2303.ini : (80070002)
Fri, 23 Jan 2009 12:40:47 processing of package is complete, result -1918091226 (0x8dac4026 - code 16422)
According to this log, the taskmanifest file is not being downloaded to ldclient\sdmcache.
What to do with this information:
At this point we have a failed result code that is highlighted in red. You should go to http://community.landesk.comand search for what is highlighted in red. I would first put both together. If I get nothing search for the results separately. -1918091226 first. If I get no hits search for (0x8dac4026 - code 16422). These questions are usually answered in the community. If not, you know what to talk to the support tech about.
Downloaded http://ci-ldms/Ldpackages/SWDistribution/JR142_18b/Ldms/Onefile/JR142_18b.exe did not match the hash, expected o23uEj6jKNWh+0pDt9oK1g== actual JE1ajAIxHFHUTV11Hs73fQ==
Mon, 15 Dec 2008 11:55:17 .\AdditionalFiles.cpp(227): (8DAC4027): Failed to download and hash all additional files.
According to this log there is a problem with hashing of files. There is already a great document on this issue. Error: "Failed to Download and Hash All Additional Files" .
Also searching the results in http://community.ivanti.com is always a good thing to try.
Note: No matter the error message seen in the console. It is always best to review the sdclient_taskXXX.log first.
What can be done to make sure I limit the possibilities that Ivanti EPM is going to be the reason a job fails.
NOTE: See the following for more information on Troubleshooting Policies: http://community.ivanti.com/support/docs/DOC-3245
The purpose of this document is to cover the usage of the Ivanti EPM Software Deployment Portal.
The following prerequisites must be met in order to use the Software Distribution Portal in Ivanti EPM:
One the applicable devices have been added, start the task.
Once the task has been started, the core will process the task and create the policy for each device in the task.
The task is ready to appear on the Portal when the "Status" says Waiting and the "Result" says Policy has been made available in the Ivanti EPM console.
At this point, it is up to the workstation to run PolicySync.exe and retrieve the task. This is done in a couple of ways:
Certain file extensions cannot be downloaded from a package server's web share running Internet Information Services (IIS) and ASP.NET, though these extensions may be downloaded just fine from a package server running another web server like Apache.
By default the following extensions cannot be downloaded on a server running IIS with ASP.NET.
Extensions (a - c) | Extensions (d - r) | Extensions (s - z) |
---|---|---|
.asax | .dd | .sd |
.ascx | .exclude | .sdm |
.ashx | .idc | .sdmDocument |
.asmx | .java | .shtm |
.asp | .jsl | .shtml |
.aspx | .ldf | .sitemap |
.axd | .licx | .skin |
.browser | .master | .soap |
.cd | .mdb | .stm |
.cdx | .mdf | .svc |
.cer | .msgx | .vb |
.compiled | .regresh | .vbproj |
.config | .rem | .vjsproj |
.cs | .resources | .vsdisco |
.csproj | .resx | .webinfo |
Other extensions may also be processed on the IIS server, such as .php if such is installed.
This is because certain file extensions are mapped to be processed by an application on the IIS server and only the output should be displayed. Many of these extensions do not have output but instead will just say that access is denied.
These extensions can be allowed for one particular web service without affecting other web services.
This can be resolved in a two step process:
Create a new web share for the packages (if one is not already created).
Allowing all files to be downloaded instead of processed on the web server
Create a folder on the server where the packages will be stored. (This may already be created.)
Open Internet Information Services (IIS) from Administrative Tools.
Right-click on Default Web Site and choose New | Virtual Directory.
Click Next.
Enter the Alias for the web share. For example, if the web share is going to be then the Alias name is Software.
Click Next.
For the Path, enter the folder on the server where the packages are be stored.
Click Next.
Check the option to allow Read and Browse.
Click Next.
Click Finish.
The virtual directory now appears under the Default Web Site.
Right-click on the newly created virtual directory and choose Properties.
Under the Virtual Directory tab, under the Application settings section, click the Create button to create the web application.
Click the Configuration button.
Under the Mappings tab, delete all the extensions under Application extensions except of one.
Click OK to exit the configuration.
Click OK again to exit the properties of the virtual directory.
A batch file can be used to add a local user to many machines at once.
The following is a sample batch file that will accomplish this task.
REM Add a user batch file net user john1 passwd! /add
However, maybe you do not want the username and password in the batch file in clear text. That batch file will hang out in the ldclient\SDMCache for a short time, as well as be echoed to the sdclient_task#.log in the ldclient\data directory.
So you can store the password in the command line of the Distribution Package.
REM Add a user REM %1 is the username REM %2 is the password REM Turn echo off so the password is not echoed to the log @echo off net user %1 %2 /add
Now in the distribution package simply put the username and the password in the command line. The password is still clear text in the Distribution Package, but only Ivanti EPM administrators can see that so there is more security there.
To delete a user, it is just as simple.
REM Add a user batch file net user John1 /delete
Here is one command in a batch file that will add all the users from a .csv file.
REM Add all the users from a .csv file REM Turn echo off so the passwords are not echoed to the log @echo off FOR /F "tokens=1,2 delims=," %%a IN (users.csv) DO net user %1 %1 /add REM Now delete the .csv file. We need to delete it, it has clear text passwords del /F /Q users.csv
The .csv file would look like this:
John,passwd!1234 Jane,passwd!1234 Jared,passwd!1234
Use the following batch file to add a local group.
REM Adding a local group net localgroup MyGroup /Comment:"My own Group" /add
Use the following batch file to delete a local group.
REM Adding a local group net localgroup MyGroup /delete
Use the following batch file to add a user to a local group.
REM Adding a user to a local group net localgroup MyGroup john /add
Use the following batch file to delete a user from a local group.
REM Deleting a user to a local group net localgroup MyGroup john /delete
It may be beneficial especially in Workgroup environments to have a local administrator account that has the same username and password on all workstations.
This can be done with this batch file.
REM Adding a local administrator REM Turn echo off @ECHO OFF REM Add the user net user ITAdmin %1 /add REM Put the password in the distribution package's command line REM Add the user to the group net localgroup administrators ITAdmin /add REM Remove the user from the default "users" group net localgroup users ITAdmin /delete
Description
There are multiple ways to open a command prompt running as the Local System account. Here are some easy ways to do this:
Note: All commands should be run from an administrative elevated command prompt (CMD running as administrator
Download a Sysinternals tool called PSexec. This tool can also be used to launch other programs or scripts as the local system (regedit.exe!). Run:
psexec -i -s cmd.exe
On an Ivanti EPM agent, run the following command from a command prompt as a local administrator:
"c:\program files\landesk\ldclient\localsch.exe" /exe=cmd.exe
On a workstation without a n Ivanti EPM agent, use Microsoft's Scheduler service by running the following command at the command prompt. Note: Determine the current system time and replace the time in the example below with the current time on your system plus 1 or 2 minute(s). For example, the command for 2:23 PM would be this:
at 14:23 /interactive cmd.exe
When remote controlling an Ivanti EPM agent, in the top of the screen there is a Run: field. Simply type "cmd.exe" in the Run: field and click the green arrow.
Note: This doesn't work with the Management Gateway on-demand agent, because the user launches the on-demand agent. It only works with the agent service.
Download the attached script to the scripts directory on your Core Server. Schedule the attached script as a scheduled task from the Console. It will open a Local System command prompt on the target workstation.
Local System Command Prompt.ini
How to change the time that files remain in the SDMCACHE directory.
The SDMCACHE directory is where LANDesk products store files that were downloaded during Software Distribution or Patching tasks. By default, this folder is purged every 7 days on normal agents and every 14 days on subnet representative agents.
32bit
HKLM\Software\Intel\LANDesk\LDWM\Distribution\Multicast\Discard Period
HKLM\Software\Intel\LANDesk\LDWM\Distribution\Multicast\Subnet Rep Discard Period
HKLM\Software\Wow6432Node\Intel\LANDesk\LDWM\Distribution\Multicast\Discard Period
HKLM\Software\Wow6432Node\Intel\LANDesk\LDWM\Distribution\Multicast\Subnet Rep Discard Period
Default Data for Discard Period is set to (604800) in seconds = 7 days
Default Data for Subnet Rep Discard Period is set to (1209600) in seconds = 14 days
Increase the data value in seconds.
Note: When updating the registry, this will update the *.info files located in ldcacheinfo directory for the discard date.
2. Restart the LANDesk Targeted Multicast service on the client.
Note: This does not change the time for files that are already in the SDMCACHE directory. To change the time for existing files in Management Suite 9.0 SP2 or higher, delete the LDCACHEINFO subfolder from each directory containing files needing the longer discard period before restarting the service.
To verify that the files have been cached the intended amount of time, run "TMCsvc.exe /F | more" from a command prompt in the \LDClient directory. This command will output cached files "time to live" values to the screen.
Launching a software distribution task often results in one of the following errors:
Failed to download and hash all additional files
Failed to download all additional files for a package
Sometimes this error, though rare, may also be seen:
No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
There are several possible causes:
The hashes in the database do not match the actual hashes of the files.
The Scheduler Service on the core does not have access to the package files where they are stored on the network, so it cannot calculate the hash, update the database or generate the taskmanifest file.
The file being downloaded is not an allowed MIME type in IIS.
Files specified in the distribution package do not exist or cannot be found. This is common if using the auto detect feature in MSI distribution packages.
The path to the files in the distribution package is using a c:\program files\path format. This is incorrect, it must be a UNC or an HTTP path.
If the package is being hosted on a workstation vs. a server the number of connections may be exceeded.
The taskmanifest file is being generated with an incorrect Core server name or ip address. The scheduler account is locked out or unable to authenticate.
In the LANDESK Console under the Scheduled Task, under Failed, right-click on the device name with the failure and choose View log file.
If the log file does not exist, this indicates that the hash was never generated. This usually means the files cannot be accessed and hashed. If using a UNC share this indicates that the Scheduler service account does not have access to the files. If using a Web Share it may indicate a hidden file, invalid mime types, or incorrect permissions.
If the log file exists, the error is after the hash generation and more likely to be a problem with a failure to download a file, or a file has been modified since the has was created.
View the scheduledtaskhandler_##.log in \\CoreServer\ldlog. This log helps indicate what files the package is having issues hashing or downloading.
If this article does not assist in resolving this issue, contact LANDESK support.
Reset the package hash. To do this do the following from the LANDESK Console:
Go to Tools | Distribution | Distribution Packages.
Right click on the Distribution Package and choose Reset package hash.
Use different credentials for the scheduler service, or modify the share and file permissions so the account that launches the scheduler service will have access.
Verify that IIS mime types are properly configured. To do this:
Open the IIS administration tool on the core.
Choose Default web site properties | HTTP Headers | MIME Types.
Add the following MIME types:
Extension: .*
MIME type: All file types
Verify all files in the distribution package exist and are not hidden.
Change the source path to the files from UNC to HTTP. This helps eliminate issues that may occur due to share permissions.
If the core server is in a different AD domain, add the full domain name in the properties of the package under the package location.
For example:
Add the Domain Computers group to the security tab of the share.
Create a new Delivery Method, and uncheck the Bandwidth Throttling option. Test using the new Delivery Method.
If the taskmanifest file in the ldlogon\Filelists folder does not contain the correct Core server name or IP address the name of the Core server has been changed.
Unlock the account used for the Scheduler service.
Use Preferred Servers so you can specify the account that will download package files instead of using Local System. In the console, click Configure, then Preferred Server, then Add, and specify the server and account you wish to use. (You can only configure preferred servers from the console on the core itself).
If the above fails, rename the file in the package to a different name and setup the package again. It has been seen at times where something has corrupted the file.
Description
Creating a script to reboot machines with POWEROFF.EXE in:
C:\Program Files\LANDesk\ManagementSuite\ldlogon
How to use
Create a script with the following REMEXEC command:
REMEXEC0=C:\Windows\System32\Poweroff.exe 600 /REBOOT /nocancel
The LD_TASK table inside the LDMS database contains a TASK_STATUS column whose values are represent the status for each task.
Below are the code definitions for the TASK_STATUS column:
Code | Description |
---|---|
-1 | No Change |
0 | Waiting |
1 | Working |
2 | Done (Deprecate) |
3 | Failed (See NT Event Viewer) |
4 | Failed (Scheduler Service Stopped) |
5 | Success |
6 | Partial Success (Not all devices processed task) |
7 | Failed (All machines failed) |
8 | Unknown value returned |
9 | Hold (New Task) |
10 | Do Now (Begins task) |
11 | Failed (Do not retry) |
12 | Pull Available (Policy Tasks) |
13 | Invalid |
14 | Failed (Task Cancelled) |
15 | Failed (Task Handler reported an exception) |
16 | ASync Execution (Push Tasks) |
The LD_TASK_MACHINE table inside the LDMS database contains a MAC_STATUS column whose values are represent the status for each machine targeted in a task.
Below are the code definitions for the MAC_STATUS column:
Code | Description |
---|---|
-1 | No Change |
0 | Waiting |
1 | Working |
2 | Done |
3 | Failed |
4 | Active |
5 | Failed (Do not retry) |
6 | Failed (Invalid IP) |
7 | Failed (Unreachable) |
8 | Failed (Task Cancelled) |
9 | Busy |
10 | Delayed |
11 | Failed (Retrying) |
12 | Async Execution |
13 | Timezone Waiting |
Hi,
I am runing 9.6 SP1.
I noticed that policysync create srt file in c:\temp.
Any idea what those files are?
Thank you
1)门户管理推送后,很多卡在安装节点中,如上周推送的,有的好了(响应慢),有的仍然显示安装,速度非常慢,当前用户没有推送其它的任务,终止不了;
2)推送软件安装包的时候,用指定用户推送时,经常失败,不知设置是否错误;
3)推送软件时,到底是否需要代理,自己测试没用代理的时候容易失败,有代理还成功过,代理的作用是?;
4)软件打包工具的使用,打包成静默安装模式;
Hello all,
I have been trying to use InstallEase to create MSI packages for deployment. I have been unable to create an installer that successfully performs the process.
I have had a variety of errors in my testing. One consistent one referenced some registry keys that had no value, and the MSI could not be created. This persisted no matter how much I removed from the snapshot. I did an easy one, where I copied files to the Program Files (x86) directory and then created links to those files and placed them on the desktop. I was able to complete the process and an MSI file was generated. After reverting the changes I made so I could test the installer, I attempted to use this MSI. The "Gathering required Information" part takes longer that I have seen on other MSI installers. I am not sure if that is related. I get an error that it could not write a value to a key in the registry. That I should check if I have sufficient privileges.
For reference, the details of this test environment are. The OS is Windows 10 (latest build and updates) running as a VM (hyper-V). Using a local user account that has admin privileges. The Host OS is also a Windows 10 (latest build and updates) running on a Workstation laptop (Xeon processor, ECC RAM, etc).
Any thoughts are appreciated.
Sincerely,
Pat
We have random issues where the replicator stops reporting after so long. Than it works other times.
We have tried to reinstall agent on client no correct.
2018 10:11:33 Last status: Retrying in 1 seconds...
Thu, 01 Feb 2018 10:11:54 Action SOAPAction: "http://tempuri.org/ResolveDeviceID" failed, socket error: 0, SOAPCLIENT_ERROR: 5. Status code: 503, fault string:
Thu, 01 Feb 2018 10:11:54 Disabling vulscan's & lddwnld.dll's use of proxyhost
Thu, 01 Feb 2018 10:11:54 ERROR: function DisableProxyHost is no longer supported
Thu, 01 Feb 2018 10:11:54 Retrying in 12 seconds...
Thu, 01 Feb 2018 10:11:57 Last status: Retrying in 9 seconds...
Thu, 01 Feb 2018 10:11:58 Last status: Retrying in 8 seconds...
Thu, 01 Feb 2018 10:11:59 Last status: Retrying in 7 seconds...
Thu, 01 Feb 2018 10:12:00 Last status: Retrying in 6 seconds...
Thu, 01 Feb 2018 10:12:01 Last status: Retrying in 5 seconds...
Thu, 01 Feb 2018 10:12:02 Last status: Retrying in 4 seconds...
Thu, 01 Feb 2018 10:12:03 Last status: Retrying in 3 seconds...
Thu, 01 Feb 2018 10:12:04 Last status: Retrying in 2 seconds...
Thu, 01 Feb 2018 10:12:05 Last status: Retrying in 1 seconds...
Thu, 01 Feb 2018 10:14:03 Action SOAPAction: "http://tempuri.org/ResolveDeviceID" failed, socket error: 10054, SOAPCLIENT_ERROR: 5. Status code: -1, fault string:
Thu, 01 Feb 2018 10:14:03 Disabling vulscan's & lddwnld.dll's use of proxyhost
Thu, 01 Feb 2018 10:14:03 ERROR: function DisableProxyHost is no longer supported
Thu, 01 Feb 2018 10:14:03 Handling case of core server not found.
Thu, 01 Feb 2018 10:14:03 Last status: Failed: Core returned error
Thu, 01 Feb 2018 10:14:03 GetComputerIdn {B717B54C-E7DF-2B41-AAF9-5DA53C6454DA} = -1
Thu, 01 Feb 2018 10:14:03 Error: Unable to resolve computer idn
Hey awesome folks ive been reading alot on the website and found resolutions to problems i have been having...but now i need to ask my first question
For some reason application i made available in portal manger wont install when a user clicks on it. i had it working at first but it asked for admin rights to complete the download and installation.
currently running 9.6 and are on the verge of upgrading very soon. i along with my team want to put portal manager to its full use for the users, but i am stuck and dont know what else to do help please.