import-module Questions
1
Solved
enter image description herei want to use this module or other modules, the finish button is off. anyone has a same situation like me?
https://github.com/mohamad-amin/PersianMaterialDateTimePicker
...
Sorgo asked 20/8, 2021 at 13:13
6
Solved
I'm importing Carbon into my PowerShell script; however when running my script with -Verbose, Carbon also outputs a lot of VERBOSE statements.
Is it possible to Import-Module silently such that I ...
Alathia asked 20/3, 2014 at 15:36
3
Solved
Before importing my powershell module (MyModule.psm1), I have written one function in it:
Function T1()
{
Write-Host "T1 is just called" -ForegroundColor red
}
In my MyModule.psd1:
@{
PowerSh...
Westbound asked 27/9, 2013 at 7:39
5
Solved
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 anybo...
Meredeth asked 18/2, 2011 at 7:59
3
Windows 7 workstation
POSH 3.0
SS 2012 SP1
Abstract:
Developer 1 cannot run Invoke-SQLCmd
Developer 2 with similar SS Client tools installation can run Invoke-SQLCmd
Developer 1 cannot run Impor...
Kolodgie asked 16/10, 2015 at 14:19
4
When I use
Import-Module -Name <path_to_local_dll> -Verbose
the cmdlets contained in the DLL file are not exported.
Thus, when I type Get-Module my imported module is listed, but without ...
Elishaelision asked 12/10, 2015 at 13:24
2
I'm using a third-party module I found on GitHub and importing it with:
powershell Import-Module .\foo.ps1
This imports successfully and the module works great. But when I open a new PowerShell ...
Bradawl asked 13/1, 2019 at 22:44
2
Solved
Previously working with PowerShell 3. Upgraded to PowerShell 4 and uninstalled it as facing error stated.
Import-Module : The specified module 'SQLPS' was not loaded because no valid module file w...
Parmesan asked 30/10, 2015 at 5:26
5
Solved
I want to use RecyclerViewLib in my project and for that I downloaded it and imported it as a module to my empty "hello world" Android project. I am using android studio v1.0.1 using sdk manager v2...
Aquavit asked 11/2, 2015 at 9:18
1
Solved
While I develop an Android App, I have a library which I have created as separate Android Studio project and can use it by inserting it into new projects. I insert the library by choosing 'File|New...
Ansley asked 15/9, 2015 at 6:54
1
Solved
I'd like to know whats is the difference between the memory usage when importing modules in these ways:
import Mod1
from Mod1 import *
from Mod1 import a,b,c
Mainly between the first two.
Hophead asked 15/4, 2015 at 14:35
2
I am getting so frustrated with this issue. I keep getting it and I cannot figure out why. Here is my Android.mk in src/jni
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := tut...
Esplanade asked 30/10, 2014 at 20:4
3
Solved
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...
Drona asked 14/2, 2013 at 19:15
1
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 li...
Lacreshalacrimal asked 7/6, 2012 at 5:40
1
Solved
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...
Vickyvico asked 8/5, 2012 at 12:16
4
Solved
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 pro...
Warton asked 9/11, 2011 at 15:53
1
Solved
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 ...
Eachelle asked 2/11, 2011 at 17:42
1
Solved
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....
Arleta asked 15/6, 2011 at 8:35
1
© 2022 - 2024 — McMap. All rights reserved.