Questions tagged [windows-shell]

The Windows Shell is the main graphical user interface in Windows hosted by Windows Explorer. It also implements a shell namespace that enables computer programs running on Windows to access the computer's resources via the hierarchy of shell objects.

The Windows Shell is the main graphical user interface in Windows hosted by Windows Explorer. Important features of Windows Shell include the Desktop, Taskbar, Start Menu, et cetera. Extending functionality of Windows Shell is possible using shell extensions.

In the shell namespace hierarchy "Desktop" is the top object; below it there are a number of files and folders stored on the disk, as well as a number of special folders whose contents are either virtual or dynamically created like the Recycle Bin, Libraries, Control Panel, This PC and Network.

Read more regarding the Windows Shell here:

https://en.wikipedia.org/wiki/Windows_shell

751 questions
-1
votes
2 answers

Substitute “[“ to [ using sed

I’m trying to correct some errors of a file with the following input: "[""test""]" And I want to get this output: ["teste"] I already tried the following commands: sed -i s/"["/[/g *.csv sed -i s/"]"/]/g *.csv I get this error message: sed: -e…
Jojo
  • 15
  • 2
-1
votes
2 answers

what is the command that prints the current PATH (window`s API, using c++)

I am programming a basic win shell in c++ and one of the request is to support the function that prints the current ("chosen") path(basically does what "echo %cd%" does)... can some one please post the command name and/or usage. I have been…
-1
votes
1 answer

Trying to convert Delphi interface definition to C++ for VS 2008

I need to convert an interface defined in Delpi to C++. I made small demo project that contains all of the stuff shown below. First is the Delphi function that the person claims to be working on this thread: function…
c00000fd
  • 20,994
  • 29
  • 177
  • 400
-1
votes
1 answer

Handling WM_APPCOMMAND (volume control)

How do I handle WM_APPCOMMAND messages to increase volume in a custom shell? I have tried waveOutSetVolume and it doesnt not work. I tried the IAudioEndpointVolume interface and this works only inside Windows explorer shell, doesnt work in custom…
Aster Veigas
  • 866
  • 3
  • 13
  • 34
-1
votes
2 answers

lost PATH while trying to set custom winlogon shell in WindowsXP

I have changed the shell key in windows registry to gain custom shell (Kiosk usage): [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] I set shell key to a batch file which runs two applications as below: start…
m-abdi
  • 540
  • 1
  • 7
  • 30
-1
votes
1 answer

How to locate files/directories in Windows power shell

I am using a remote windows server and I have access to only windows power shell. I need to find path of few directories. Is there any way to locate files/directories in windows power shell. Thank You
Sangeeta
  • 589
  • 1
  • 7
  • 26
-1
votes
1 answer

copy .h files (only) form subfolders under main folder to new folder using cmd

I want to copy all .txt files which might be in sub folders or under main folder(source) to destination main folder i.e E:\source\sub1\sub11 or E:\source\sub2 or E:\source\ to d:\test folder. Here i want to copy only .txt files not there subfolder…
-1
votes
1 answer

Embedding a side bar in explorer

How do I embed a side bar in explorer like the bar on the right? It's a dropbox-clone in Chinese After fiddling with SP++, I'm guessing it is finding the HWND, resizing the SHELLDLL_DefView and adding a window to CabinetWClass. Or is there a shell…
TiansHUo
  • 8,509
  • 7
  • 45
  • 57
-2
votes
1 answer

WM_GETMINMAXINFO allows minimum to be adjusted larger but not smaller than when resizing started

I want to limit the resize range of a windows width based on the height. I do this via WM_GETMINMAXINFO, but there is a quirk (at least in Win10). If at the time of starting the resize and my window height supports a minimum width of say 80, it…
df234987
  • 513
  • 2
  • 13
-2
votes
1 answer

What is the easiest way to create a folder picker dialog box in C++?

I'm trying to create a Windows console application which simply opens a folder picker dialog box trough which the user can select a folder. The application would then change current working directory of the command prompt to the path of the selected…
Gark Garcia
  • 450
  • 6
  • 14
-2
votes
1 answer

Something changes files name in Windows when there are whitespaces (Windows Shell arguments)

I am developing an application based on C# WPF. This application uses system register to capture the Explorer Context Menu actions. In other words: the Explorer Context Menu presents an additional Item customized for my application, a bit like…
shogitai
  • 1,823
  • 1
  • 23
  • 50
-2
votes
1 answer

Moving from Bash Linux shell for any window's shell tool. How to start and which tools to use?

I've been using Linux for developing for at least 7 years, but in my new job I have to work with windows and I'll have to learn about it, so I decided to start learning some window's shell. I'm quite comfortable with bash and I'd like to know what…
charles.fg
  • 530
  • 4
  • 14
-2
votes
1 answer

Get the time elapsed for file created time and current time in powershell script

I am trying to find out whether the file in the folder existed for morethan 30 minutes or not.I need find the difference between current system time and file created time in powershell.Please help m eout
Ironman
  • 556
  • 3
  • 7
  • 21
-3
votes
1 answer

Does Window's Shell CopyHere method support redirection?

I use Window's Shell CopyHere method to unzip archives in some batches. It generally works, as shown in the script example below, but gives an error in some cases. In particular, I found it gives an error when unzipping an archive to a special…
sambul35
  • 1,058
  • 14
  • 22
-3
votes
1 answer

Error in ShellLink creation with negative IconIndex value

In Delphi XE7, I use this code to create a SHELL LINK pointing to a specific folder. This folder is displayed in Windows Explorer with a custom folder icon defined by a desktop.ini file inside this folder. The SHELL LINK should be created with the…
user1580348
  • 5,721
  • 4
  • 43
  • 105
1 2 3
50
51