|
We use active directory to push out applications and are looking for a solution that can do this:
1) I startup a clean machine (Proberbly virutal )
2) Start up some sort of monitor program
3) Install program XX and whatever else i want in that package...
Started by EKS on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Repackaging an MSI with a tool is bad mojo.
That programs aren't already using MSI files internally.
|
|
...for current user? for all users?
I'm working an a small program which needs to create links in the start menu. Currently I'm hardcoding like below, but it only works in english locales, for example it should be "Startmenü" in german. What are cleaner...
Started by matt wilkie on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
''' Get windows special folders without pythonwin Example: import specialfolders start_programs = _ctypes.windll.shell32.SHGetFolderPathW #public special folder constants DESKTOP= 0 PROGRAMS= 2.
|
|
Hi
From 12.2 we know that we can upload the ABAP from the R/3 DF.
But when we invoke the option by Right-Click on a R/3 DF --> Generate ABAP Code... --> ABAP Programs Generation Dialog Box, here the path for "Generate ABAP Programs in Directory"...
Started by ganeshxp on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at forumtopics):
This directory is a per-abap-dataflow....
This parameter.
We already the datastore parameter generated_abap_directory to be the default was short sighted.
Isn't that the datastore's generated_abap_directory? Nope it is not coming up as same.
|
Ask your Facebook Friends
|
Hi all,
I there a way to specify the running directory of command in subprocess.Popen()
like
Popen('c:\mytool\tool.exe',workingdir='d:\test\local')
and my python script locates in c:\programs\python.
IS there possible i can run c:\mytool\tool.exe in '...
Started by Weiwei on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Subprocess.Popen takes a cwd argument to set the Current Working Directory; you'll also want.
|
|
Hi,
I have seen plenty of apps that wipe free space on a disk (usually by creating a file that is as big as the remaining space) or defragment a file (usually by using the MoveFile API to copy it to a new contiguous area).
What I have not seen however...
Started by Synetech inc. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
At least one ("sfill....
Drive" that deletes Directory entries, nice program, newer editions dropped that feature
tl;dr testing of secure delete programs under Unix-like filesystems, and none address the specific issue you bring up.
|
|
This is perhaps the most bizarre problem I've ever come across, but my home directory in Ubuntu 9.10 seems to be occasionally reverting to a previous state.
For example, I'll change a setting in Opera (whose settings folder is in my home directory), then...
Started by Zurahn on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Either (a) root or (b) some other userID you sometimes use got two different versions of your /home/zurahn directory, one you see when the partition is mounted create a text file in your home....
To the home directory of some other user - i.e.
|
|
I'm troubleshooting a problem with creating Vista shortcuts.
I want to make sure that our Installer is reading the Programs folder from the right Registry entry.
It's reading it fromK HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer...
Started by Clay Nichols on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Use SHGetFolderPath with CSIDL_PROGRAMS) CSIDL_PROGRAMS = 0x0002, // Start Menu\Programs CSIDL_CONTROLS = 0x0003, // My Computer\Control_FAVORITES = 0x0006, // \Favorites....
Don't use the registry to read this.
Sounds correct to me.
|
|
I need to gain access to the list of most recently used programs and list of recently opened files in Windows OS programatically. These are the items you generally see once you click start in windows. I am looking to use C# but if its better in Managed...
Started by Perpetualcoder on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
String folderName = Environment.GetFolderPath.
I think for files you can access recent directory.
|
|
If in bash, I do " set -P " then bash follows the "physical directory structure" when doing " pwd " and " cd .. " etc, rather than the "logical one" that might be defined via symlinks. Unfortunately, bash still doesn't obey the physical directory structure...
Started by Douglas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
" set -P " seems to put bash into "physical directory.
With a fresh bash, it's all working fine.
|
|
I'm writing a program that requires the ability to list all applications installed, and it will do that by listing all the uninstallers for it in a specific directory. This code isn't working, and the directory is created and there are files in the directory...
Started by Indebi on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
E.g.: "C:...."
This code seems to be working ,please use this:
class Program { static void Main(string[] args) { Program p = new Program(); p.getAllFiles(@"D:\Old_Desktop"); } public void getAllFiles(); } }
And yes the directory....
|