Bir dosyayı ayrıştıran ve belirli bir desen algıladığında bir e-posta gönderen bir powershell komut dosyasına sahibim. Bir işlev içinde e-posta kodu kurulumuna sahibim ve ISE'den çalıştırdığımda her şey düzgün çalışıyor, ancak ben bir hizmet olarak betiği çalıştırabilmek için PS2EXE kullandım ama "e-posta" işlevini tanımıyor. Ben exe ve bu hatayı alıyorum çalıştırmak dönüştürmek ne zaman kod buPowershell betiği işlevimi tanımıyor
#Do things |
foreach{
email($_)
}
function email($text){
#email $text
}
benzer: düzen (yukarıdan aşağıya) içinde
The term 'email' is not recognized as teh name of a cmdlet, function, script file,
or operable program. Check the spelling of the name, or if a path was included,
verify that the path is correct and try again.
Teşekkürler şimdi çalışıyor! – laitha0