Questions tagged [wds]

WDS stands for "Windows Desktop Search", also known simply as "Windows Search", which is the search engine used on Microsoft's Windows OS. It supercedes Windows Indexing Service.

Windows Desktop Search is now up to version 4.0, and is used on Windows Vista, Windows 7, Server 2003 and 2008. It is an extensable search engine that can be queried via windows explorer or programmatically by ODBC.

40 questions
0
votes
2 answers

Can't send from Viewer to Host using Virtual Channels with Windows Desktop Sharing/RDPCOMAPILib

I'm creating a windows desktop sharing app and have everything working except the virtual channels for sending chat messages. I can send messages from the host to the Viewer but not vice versa. The Viewer is using the ActiveX RDPViewer. The problem…
0
votes
1 answer

Exception when SQL query has multiple word string to W10 desktop search index

I've gobbled together a basic Powershell script to query W10's Windows Desktop Search (WDS) index. Here is the relevant bits, $query = " SELECT System.DateModified, System.ItemPathDisplay FROM SystemIndex WHERE…
Dude named Ben
  • 507
  • 3
  • 16
0
votes
1 answer

MDT Server opens cmdlet directly

As the title already mentions, the MDT Server opens the cmdlet directly after loading the Lite Touch Windows PE image. I added a few arguments in the CustomSettings.ini. I am running a ESXi 6.7 Server where the MDT-Server is installed. And new VM's…
0
votes
1 answer

CS.ini automatically select task sequence based on model

What I want to accomplish is for MDT to automatically select the task sequence based on the model, and if there is no match to run a generic deployment. but it's not selecting the task sequence automatically. any idea, how can i achieve this goal.…
Imtiaz Ali
  • 49
  • 7
0
votes
1 answer

Suspeciously long pauses between Click and SendKeys actions in WDS in JMeter

I have an action which fills in a form with 2 fields and clicks submit button. Issue: load time for this sampler grew up during several script runs from 2-3 sec initially (which was visually close to manual execution) to 14-16 sec with no visible…
Nadezhda T
  • 262
  • 8
  • 24
0
votes
1 answer

WebDriver Sampler in Jmeter - switch to new window, allow mic and cam in dialog box, perform actions, close new window, return back to initial window

I'm working on following scenario with WebDriver Sampler in Jmeter on javascript: perform several requests in main window; for 1 specific transaction: 2.1. - switch from initial window to newly created window (both windows have the same…
Nadezhda T
  • 262
  • 8
  • 24
0
votes
1 answer

Is it possible to use 2 WDS for 2 different users roles in 1 JMeter Thread group?

There are 2 users roles in Application. When running 2 users roles sequentially in 1 browser (login1 - actions1 - logout1, login2 - actions2 - logout2), the set of problems with users identity /pages visibility and fails occurs. Is it possible to…
Nadezhda T
  • 262
  • 8
  • 24
0
votes
1 answer

Windows Search fails to find file when text converted to uppercase

I have an odd problem with Windows Search engine. When I search for the Greek word, Όρος, in the Windows 10 Start menu search bar, I get the expected results. When I search via VB.Net it fails to find any results. I've narrowed the issue to the…
Dude named Ben
  • 507
  • 3
  • 16
0
votes
0 answers

Windows 10 unattend.xml Disk Configuration Problem

I have some troubles with my answer file. The file works exept the "Disk Configuration" part. The Dialog popups every time even when i set the Value WillShowUI to "Never". I already tried so many examples from the internet, but none of them worked.…
0
votes
1 answer

Configure fixed listening port on RDP api

I wrote a windows desktop sharing app using Microsoft RDP COM API. activeSession = new RDPSession(); /* I can only have 1 attendee per-session */ activeSession.Invitations.CreateInvitation(authstr, groupname, password, 1); but I need to start an…
0
votes
1 answer

List images from WDS remotely

I want to get list of Images from a WDS Server (Windows Deployment Services) remotely. I'm using the PowerShell command Get-WdsInstallImage and it needs the highest privileges. I'm tried the below commands, but they don't work: Invoke-Command…
mino
  • 125
  • 2
  • 11
0
votes
0 answers

Add query to training data using CURL

In the Watson API documentation, the following is given for adding query to training data using CURL: curl -X POST -u "{username}":"{password}" -H "Content-Type: application/json" -d '{ "natural_language_query": "who is keyser soze", "filter":…
0
votes
0 answers

Windows Script - Get IP + Hostname from txt file matching MAC

So I have been bashing my head on the KB trying to see whats best. Using MDT / WDS to setup several BareBone machines that i have a list of, the hostnames, ip's and mac address. I can add this to a txt file, read the MAC address to the only…
Luis
  • 83
  • 2
  • 10
0
votes
0 answers

port number not accessible when running webpack-dev-server

I have a centOS 7.2 box as my web server hosted in aws. I found something interesting : when I run my web site using a nginx docker container, I'm able to access it from my local machine. i.e. run docker command docker run -d -p 8000:80…
Bo Chen
  • 717
  • 1
  • 9
  • 16
0
votes
1 answer

unattend setup returns error 0xfffd0000 during specialize pass

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…