The import-module tag has no wiki summary.
0
votes
2answers
26 views
How can maintain the powershell remote session throughout the program?
I want to execute some Active directory queries on remote machine using c# language.It is the query
PowerShell ps = PowerShell.Create();;
ps.AddScript(@"$Session = New-PSsession -Computername ...
2
votes
3answers
550 views
PowerShell Import-Module vs Dot Sourcing
If I want to separate out some of my functionality from my main PowerShell script, I can either write that as a .ps1 file and dot source the same or I can create that as a .psm1 and import the same ...
0
votes
0answers
59 views
IPython ipy_user_conf.py file is not adding imports or functions to console
There is not much documentation on the web about the ipy_user_conf.py file other than at: (http://ipython.org/ipython-doc/rel-0.10.2/html/config/customization.html#ipythonrc).
For some reason my ...
0
votes
0answers
40 views
import_module issue with pyinsyaller
I'm trying to load some modules in my pyinstaller packaged exe. When I try to load I get complaints that it can't find the module although I'm pretty sure the module is there.
Here is a code snip of ...
0
votes
1answer
47 views
Why I cannot see an function that is part of an imported module's imported module in Powershell?
Let me explain with a simple example:
# TestModule.psm1 content
# which is D:\Projects\(...)\MyProject\\bin\Debug\Modules directory :
function TestMe
{
Write-Output "TestMe is called!"
}
# ...
1
vote
1answer
1k views
32 bit Powershell: Use the ServerManager module?
I'm working with a 32 bit application that can run powershell snippets. I need to load the ServerManager module, which I would normally do with:
Import-Module ServerManager
But I get this error:
...
0
votes
1answer
655 views
Windows PowerShell Import-module
On my computer in PowerShell the command
import-module GroupPolicy
fails with
import-module <<<< GroupPolicy
+ CategoryInfo : ResourceUnavailable: (GroupPolicy:String) ...
3
votes
1answer
194 views
Accessing module installed on Pythonanywhere in Web2py
I've used pip-2.7 install --user soundcloud to install the soundcloud module for Python 2.7 in Pythonanywhere.
In my Web2py App in Pythonanywhere, I get an error message when using import soundcloud, ...
3
votes
1answer
493 views
Pythonanywhere install and import new module
I'm new to Pythonanywhere and want to install the 'soundcloud' Python module. I've opened up a Bash console and given the pip install --user soundcloud command.
It appears to have installed, as I see ...
4
votes
1answer
526 views
What is the difference between Add-PSSnapin and Import-Module in PowerShell? [duplicate]
Possible Duplicate:
What’s the difference between Add-PsSnapIn and Import-Module
What is the difference between Add-PSSnapin and Import-Module in PowerShell?
At the end, both seem like ...
5
votes
1answer
2k views
How to correctly ignore Import-Module errors in PowerShell
I'm currently having issues whilst calling Import-Module with Powershell and would be grateful for some advice.
According to previous questions and answers here, the following error, when received ...
0
votes
2answers
394 views
Why can't pydev find the csv module?
I still cannot get PyDev and eclipse on MacOS to reliably import modules.
import csv generates an "Unresolved import:" error within PyDev; however, when I open Terminal and run the script from the ...
2
votes
0answers
91 views
What's the difference between IMPORT-MODULE and PREBUILTS?
Currently I'm using ffmpeg to develop a media player on Android. I've compiled ffmpeg using ndk. And next I have to use the built module to code. So here comes the question: how to use the compiled ...
3
votes
4answers
1k views
ConfigParser vs. import config
ConfigParser is the much debated vanilla configuration parser for Python.
However you can simply import config where config.py has python code which sets configuration parameters.
What are the ...
3
votes
1answer
420 views
Powershell: How to get -whatif to propagate to cmdlets in another module
I've been trying write safe code that supports -whatif with the ShouldProcess method so my users have an idea of what a cmdlet is supposed to do before they run it for real.
However I’ve run into a ...
0
votes
0answers
641 views
php, powershell and Active Directory
We have a 2008 domain and are running ADWS http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=2852 I am running powershell from a php page using shell_exec under iis. When i use ...
1
vote
5answers
834 views
Powershell Importing custom C# CMDlets, no available “ExportedCommands”
first question here :)
So I have to create a custom CMDLet for Powershell 2.0, using visual studio 2010 express.
I have followed this seemingly simple tutorial : ...
9
votes
1answer
3k views
Android NDK import-module / code reuse
Morning!
I've created a small NDK project which allows dynamic serialisation of objects between Java and C++ through JNI. The logic works like this:
Bean -> JavaCInterface.Java -> JavaCInterface.cpp ...
2
votes
1answer
465 views
How do you authenticate to Live@EDU (outlook.com) while using an imported PowerShell session?
I am connecting to Exchange 2010 for Live@edu via PowerShell. I can connect using the standard methods just fine. However, downloading and importing the session commands every time seems wasteful, ...
14
votes
3answers
8k views
What's the difference between Add-PsSnapIn and Import-Module
Powershell has two means for importing additional cmdlets into a session, Add-PsSnapIn and Import-Module. The docs are not at all clear regarding when one would chose one over the other. Does anybody ...
2
votes
1answer
2k views
Strong name validation failure on Import-Module
I'm unable to import an assembly, supposedly because strong name validation is failing, though this occurs even when I register the assembly to not be checked. Can somebody spot what I'm doing wrong ...
